We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fa1c53 commit a4ecd41Copy full SHA for a4ecd41
.github/workflows/maven.yml
@@ -12,14 +12,14 @@ jobs:
12
runs-on: ubuntu-latest
13
strategy:
14
matrix:
15
- java: [ 8 ]
+ java: [ 8, 11, 17, 21 ]
16
steps:
17
- uses: actions/checkout@v4
18
- name: Set up JDK ${{ matrix.java }}
19
uses: actions/setup-java@v4
20
with:
21
java-version: ${{ matrix.java }}
22
- distribution: 'zulu'
+ distribution: 'temurin'
23
cache: maven
24
- name: Build with Maven
25
run: mvn -B -U compile test --file pom.xml
0 commit comments