Skip to content

Commit

Permalink
Merge pull request #161 from emilie-robichaud/master
Browse files Browse the repository at this point in the history
Add JDK 24 EA build
  • Loading branch information
johnjstuart authored Oct 31, 2024
2 parents 8d69299 + 712e9af commit 1501beb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/solutions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand All @@ -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
Expand Down

0 comments on commit 1501beb

Please sign in to comment.