Skip to content

Commit a5d5485

Browse files
Update github actions from v2 -> v3
1 parent e9d1ce3 commit a5d5485

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/maven.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Git Checkout
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v3
2525
- name: Set JDK ${{ matrix.java-version }} from jdk.java.net
2626
uses: oracle-actions/setup-java@v1
2727
id: download-jdk
@@ -30,15 +30,15 @@ jobs:
3030
release: ${{ matrix.java-version }}
3131
if: ${{matrix.java-version != 17 && matrix.java-version != 21}}
3232
- name: Set JDK ${{ matrix.java-version }} from Zulu
33-
uses: actions/setup-java@v2
33+
uses: actions/setup-java@v3
3434
with:
3535
distribution: 'zulu'
3636
java-version: ${{ matrix.java-version }}
3737
if: ${{matrix.java-version == 17 || matrix.java-version == 21}}
3838
- name: JDK Version
3939
run: java --version
4040
- name: Enable Maven Cache
41-
uses: actions/cache@v2
41+
uses: actions/cache@v3
4242
with:
4343
path: ~/.m2/repository
4444
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)