File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 21
21
22
22
steps :
23
23
- name : Git Checkout
24
- uses : actions/checkout@v2
24
+ uses : actions/checkout@v3
25
25
- name : Set JDK ${{ matrix.java-version }} from jdk.java.net
26
26
uses : oracle-actions/setup-java@v1
27
27
id : download-jdk
@@ -30,15 +30,15 @@ jobs:
30
30
release : ${{ matrix.java-version }}
31
31
if : ${{matrix.java-version != 17 && matrix.java-version != 21}}
32
32
- name : Set JDK ${{ matrix.java-version }} from Zulu
33
- uses : actions/setup-java@v2
33
+ uses : actions/setup-java@v3
34
34
with :
35
35
distribution : ' zulu'
36
36
java-version : ${{ matrix.java-version }}
37
37
if : ${{matrix.java-version == 17 || matrix.java-version == 21}}
38
38
- name : JDK Version
39
39
run : java --version
40
40
- name : Enable Maven Cache
41
- uses : actions/cache@v2
41
+ uses : actions/cache@v3
42
42
with :
43
43
path : ~/.m2/repository
44
44
key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
You can’t perform that action at this time.
0 commit comments