We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aed9f2 commit 4cad0eaCopy full SHA for 4cad0ea
.github/workflows/maven.yml
@@ -14,13 +14,14 @@ jobs:
14
runs-on: ubuntu-latest
15
strategy:
16
matrix:
17
- java: [8, 11]
+ java: [8, 11, 17]
18
name: Java ${{ matrix.java }} building ...
19
steps:
20
- - uses: actions/checkout@v2
21
- - name: Set up Java ${{ matrix.java }}
22
- uses: actions/setup-java@v1
+ - uses: actions/checkout@v3
+ - uses: actions/setup-java@v3
23
with:
24
- java-version: ${{ matrix.java }}
+ distribution: 'zulu'
+ java-version: ${{ matrix.java }}
25
+ cache: 'maven'
26
- name: Build with Maven
27
run: mvn -B package --file pom.xml
0 commit comments