Skip to content

Commit 1e11c99

Browse files
committed
Bump actions/setup-java from 1 to 4
1 parent 29fe8f3 commit 1e11c99

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/maven.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@ jobs:
1313
strategy:
1414
matrix:
1515
java: [ 8, 11, 17 ]
16+
distro: [ adopt ]
1617
name: Java ${{matrix.java}}
1718
steps:
1819
- uses: actions/checkout@v5
1920
- name: Set up java
20-
uses: actions/setup-java@v1
21+
uses: actions/setup-java@v4
2122
with:
23+
distribution: ${{matrix.distro}}
2224
java-version: ${{matrix.java}}
2325
- name: Build with Maven
2426
run: mvn -B verify --file pom.xml -Dgpg.skip

0 commit comments

Comments
 (0)