From 4d2cbe40225a9255883dfbd558e8c09dc7fb59bf Mon Sep 17 00:00:00 2001 From: Liam Miller-Cushon Date: Tue, 24 Feb 2026 18:17:05 +0100 Subject: [PATCH] Add more JDK versions to CI --- .github/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb9d815a6..8cb824a82 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -314,7 +314,7 @@ jobs: fail-fast: false matrix: platform: [ubuntu-latest, macos-14, macos-latest, windows-latest] - java: [8, 11, 17, 21] + java: [8, 11, 17, 21, 25, EA] dist: ['temurin', 'zulu'] include: - platform: ubuntu-latest @@ -338,11 +338,19 @@ jobs: steps: - name: Set up Java + if: ${{ matrix.java != 'EA' }} uses: actions/setup-java@v4 with: distribution: ${{ matrix.dist }} java-version: ${{ matrix.java }} + - name: 'Set up JDK ${{ matrix.java }} from jdk.java.net' + if: ${{ matrix.java == 'EA' }} + uses: oracle-actions/setup-java@v1 + with: + website: jdk.java.net + release: ${{ matrix.java }} + - name: Download UberJAR uses: actions/download-artifact@v4 with: