Skip to content

Commit 13c0a28

Browse files
committed
[actions] Remove jdk 8 logic on newer jdk setup
1 parent 813e2e8 commit 13c0a28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ jobs:
3737
with:
3838
website: jdk.java.net
3939
release: ${{ matrix.java }}
40-
if: ${{ matrix.java != '8' && matrix.java != '11' && matrix.java != '17' }}
40+
if: ${{ matrix.java != '11' && matrix.java != '17' }}
4141
- name: Set up older JDK
4242
uses: actions/setup-java@v3
4343
with:
4444
java-version: ${{ matrix.java }}
4545
distribution: ${{ matrix.distribution }}
46-
if: ${{ matrix.java == '8' || matrix.java == '11' || matrix.java == '17' }}
46+
if: ${{ matrix.java == '11' || matrix.java == '17' }}
4747
- name: Print JDK Version
4848
run: java -version
4949
- name: Cache local Maven m2

0 commit comments

Comments
 (0)