File tree Expand file tree Collapse file tree 1 file changed +4
-21
lines changed Expand file tree Collapse file tree 1 file changed +4
-21
lines changed Original file line number Diff line number Diff line change @@ -10,16 +10,16 @@ jobs:
10
10
strategy :
11
11
matrix :
12
12
java :
13
- - 17
13
+ - 21
14
14
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v4
17
17
- name : Set up JDK
18
- uses : actions/setup-java@v1
18
+ uses : actions/setup-java@v4
19
19
with :
20
20
java-version : ${{ matrix.java }}
21
21
- name : Cache Maven packages
22
- uses : actions/cache@v2
22
+ uses : actions/cache@v4
23
23
with :
24
24
path : ~/.m2
25
25
key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
32
32
run : mvn -U clean install -DskipTests
33
33
- name : Run Tests
34
34
run : mvn test
35
-
36
- dependency :
37
- runs-on : ubuntu-latest
38
-
39
- steps :
40
- - uses : actions/checkout@v2
41
- - name : Set up JDK
42
- uses : actions/setup-java@v1
43
- with :
44
- java-version : 17
45
- - name : Run Dependency Check
46
- run : mvn -Powasp-dependency-check verify -DskipTests
47
- - name : Archive code coverage results
48
- uses : actions/upload-artifact@v2
49
- with :
50
- name : dependency-check-report
51
- path : target/dependency-check-report.html
You can’t perform that action at this time.
0 commit comments