We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c039fb commit 92b954cCopy full SHA for 92b954c
1 file changed
.github/workflows/maven-test.yml
@@ -18,15 +18,16 @@ jobs:
18
19
strategy:
20
matrix:
21
- java: [ '8', '11', '16' ]
+ java: [ '16' ]
22
23
runs-on: ubuntu-latest
24
25
steps:
26
- uses: actions/checkout@v2
27
- - name: Set up JDK 1.8
28
- uses: actions/setup-java@v1
+ - name: Set up JDK
+ uses: actions/setup-java@v2
29
with:
30
+ distribution: 'zulu'
31
java-version: ${{ matrix.java }}
32
33
- name: compile and test
0 commit comments