Skip to content

Commit be150af

Browse files
authored
Merge pull request #219 from geertjanw/master
Fixed JDK versions and the OpenJDK distro suited to support that
2 parents e5b305e + 37c288b commit be150af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88

99
strategy:
1010
matrix:
11-
java-version: [ 8, 11, 16 ]
11+
java-version: [ 8, 8.0.192, 11, 11.0.3, 17, 17.0.0+35 ]
1212

1313
steps:
1414
- uses: actions/checkout@v2
1515
- uses: actions/setup-java@v2
1616
with:
17-
distribution: 'adopt'
17+
distribution: 'zulu'
1818
java-version: ${{ matrix.java-version }}
1919
- run: mvn -B install --no-transfer-progress
2020

@@ -27,7 +27,7 @@ jobs:
2727
- uses: actions/setup-java@v2
2828
with:
2929
distribution: 'adopt'
30-
java-version: 16
30+
java-version: 17
3131
- run: mvn -B verify --no-transfer-progress
3232

3333
- uses: codecov/codecov-action@v1

0 commit comments

Comments
 (0)