Commit 0a350ff 1 parent a66647d commit 0a350ff Copy full SHA for 0a350ff
File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -13,23 +13,24 @@ jobs:
13
13
runs-on : ubuntu-latest
14
14
strategy :
15
15
matrix :
16
- java : [ 8, 11, 17, 20 ]
16
+ java : [ 8, 11, 17, 21 ]
17
17
name : Java ${{ matrix.java }}
18
18
steps :
19
- - uses : actions/checkout@v3
19
+ - uses : actions/checkout@v4
20
20
21
21
- name : Setup JDK
22
- uses : actions/setup-java@v3
22
+ uses : actions/setup-java@v4
23
23
with :
24
24
distribution : ' temurin'
25
25
java-version : ${{ matrix.java }}
26
26
cache : ' maven'
27
27
28
28
- name : Build with Maven
29
- run : mvn clean verify
29
+ run : mvn --batch-mode --update-snapshots verify -Dstyle.color=always
30
30
31
31
- name : Upload coverage to Codecov
32
32
if : matrix.java == '8'
33
- uses : codecov/codecov-action@v3.1.1
33
+ uses : codecov/codecov-action@v4
34
34
with :
35
- fail_ci_if_error : true
35
+ token : ${{ secrets.CODECOV_TOKEN }}
36
+ fail_ci_if_error : false
You can’t perform that action at this time.
0 commit comments