File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ jobs:
2525
2626 steps :
2727 - name : Checkout
28- uses : actions/checkout@v3
28+ uses : actions/checkout@v4
2929
3030 - name : Set up JDK ${{ matrix.java }}
31- uses : actions/setup-java@v3
31+ uses : actions/setup-java@v4
3232 with :
3333 distribution : temurin
3434 java-version : ${{ matrix.java }}
@@ -39,20 +39,22 @@ jobs:
3939
4040 - name : Upload coverage report
4141 if : matrix.java == env.RELEASE_JAVA_VERSION
42- uses : codecov/codecov-action@v2
42+ uses : codecov/codecov-action@v4
43+ with :
44+ token : ${{ secrets.CODECOV_TOKEN }}
4345
4446 release :
4547 if : github.ref == 'refs/heads/master'
4648 needs : test
4749 runs-on : ubuntu-latest
4850 steps :
4951 - name : Checkout
50- uses : actions/checkout@v3
52+ uses : actions/checkout@v4
5153 with :
5254 fetch-depth : 0
5355
5456 - name : Set up JDK
55- uses : actions/setup-java@v3
57+ uses : actions/setup-java@v4
5658 with :
5759 distribution : temurin
5860 java-version : ${{ env.RELEASE_JAVA_VERSION }}
You can’t perform that action at this time.
0 commit comments