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:
25
25
26
26
steps :
27
27
- name : Checkout
28
- uses : actions/checkout@v3
28
+ uses : actions/checkout@v4
29
29
30
30
- name : Set up JDK ${{ matrix.java }}
31
- uses : actions/setup-java@v3
31
+ uses : actions/setup-java@v4
32
32
with :
33
33
distribution : temurin
34
34
java-version : ${{ matrix.java }}
@@ -39,20 +39,22 @@ jobs:
39
39
40
40
- name : Upload coverage report
41
41
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 }}
43
45
44
46
release :
45
47
if : github.ref == 'refs/heads/master'
46
48
needs : test
47
49
runs-on : ubuntu-latest
48
50
steps :
49
51
- name : Checkout
50
- uses : actions/checkout@v3
52
+ uses : actions/checkout@v4
51
53
with :
52
54
fetch-depth : 0
53
55
54
56
- name : Set up JDK
55
- uses : actions/setup-java@v3
57
+ uses : actions/setup-java@v4
56
58
with :
57
59
distribution : temurin
58
60
java-version : ${{ env.RELEASE_JAVA_VERSION }}
You can’t perform that action at this time.
0 commit comments