From 9ee7c2a13ec669c9002e305d18f0e21dd194b8e1 Mon Sep 17 00:00:00 2001 From: Emilie Date: Fri, 25 Oct 2024 11:02:05 -0400 Subject: [PATCH] Add JDK 24 EA build Signed-off-by: Emilie --- .github/workflows/maven.yml | 6 +++--- .github/workflows/solutions.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index aed1c5e..2c07841 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -17,7 +17,7 @@ jobs: matrix: # os: [macos-latest, ubuntu-latest, windows-latest] os: [ubuntu-latest] - java-version: [21, 22, 23] + java-version: [22, 23, 24] runs-on: ${{ matrix.os }} @@ -30,13 +30,13 @@ jobs: with: website: jdk.java.net release: ${{ matrix.java-version }} - if: ${{ matrix.java-version != 21 }} + if: ${{ matrix.java-version != 22 }} - name: Set JDK ${{ matrix.java-version }} from Zulu uses: actions/setup-java@v2 with: distribution: 'zulu' java-version: ${{ matrix.java-version }} - if: ${{ matrix.java-version == 21 }} + if: ${{ matrix.java-version == 22 }} - name: JDK Version run: java --version - name: Enable Maven Cache diff --git a/.github/workflows/solutions.yml b/.github/workflows/solutions.yml index 502f8a0..56f1704 100644 --- a/.github/workflows/solutions.yml +++ b/.github/workflows/solutions.yml @@ -17,7 +17,7 @@ jobs: matrix: # os: [macos-latest, ubuntu-latest, windows-latest] os: [ubuntu-latest] - java-version: [21, 22, 23] + java-version: [22, 23, 24] runs-on: ${{ matrix.os }} @@ -30,13 +30,13 @@ jobs: with: website: jdk.java.net release: ${{ matrix.java-version }} - if: ${{ matrix.java-version != 21 }} + if: ${{ matrix.java-version != 22 }} - name: Set JDK ${{ matrix.java-version }} from Zulu uses: actions/setup-java@v2 with: distribution: 'zulu' java-version: ${{ matrix.java-version }} - if: ${{ matrix.java-version == 21 }} + if: ${{ matrix.java-version == 22 }} - name: JDK Version run: java --version - name: Enable Maven Cache