Skip to content

Commit 52bca18

Browse files
authored
Merge pull request #2372 from harawata/drop-java-16
[ci] Drop Java 16 (EOL)
2 parents 7c1f1fc + d821c1c commit 52bca18

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix:
2626
os: [ubuntu-latest, macOS-latest, windows-latest]
27-
java: [8, 11, 16, 17, 18-ea]
27+
java: [8, 11, 17, 18-ea]
2828
distribution: ['zulu']
2929
fail-fast: false
3030
max-parallel: 4
@@ -45,7 +45,7 @@ jobs:
4545
restore-keys: |
4646
${{ runner.os }}-m2
4747
- name: Set argLine command line option
48-
if: ${{ matrix.java == '11' || matrix.java == '16' }}
48+
if: ${{ matrix.java == '11' }}
4949
run: echo 'ARG_LINE=-D"argLine=--illegal-access=permit"' >> $GITHUB_ENV
5050
- name: Skip tests that require illegal reflective access
5151
if: ${{ matrix.os == 'ubuntu-latest' && (matrix.java == '17' || matrix.java == '18-ea' )}}
@@ -63,7 +63,7 @@ jobs:
6363
if: ${{ matrix.os == 'windows-latest' && (matrix.java == '8')}}
6464
run: ./mvnw test -B -D"license.skip=true" -D"jacoco.skip=true"
6565
- name: Test with Maven
66-
if: ${{ matrix.os == 'windows-latest' && (matrix.java == '11' || matrix.java == '16') }}
66+
if: ${{ matrix.os == 'windows-latest' && (matrix.java == '11') }}
6767
run: ./mvnw test -B -D"license.skip=true" -D"jacoco.skip=true" -D"argLine=--illegal-access=permit"
6868
- name: Test with Maven
6969
if: ${{ matrix.os == 'windows-latest' && (matrix.java == '17' || matrix.java == '18-ea') }}

0 commit comments

Comments
 (0)