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