Skip to content

Commit

Permalink
- Add Java 22 support (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwithan8 committed Apr 23, 2024
1 parent 455fbfe commit 59fcb26
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
javaversion: ["8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21"]
javaversion: ["8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22"]
steps:
- uses: actions/checkout@v3
- name: Set up JDK for compilation
uses: actions/setup-java@v3
with:
distribution: "zulu"
java-version: "21" # Always use the latest JDK for building
java-version: "22" # Always use the latest JDK for building
- name: Load Maven dependencies cache
uses: actions/cache@v3
with:
Expand All @@ -45,7 +45,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: "zulu"
java-version: "21" # Always use the latest JDK for building
java-version: "22" # Always use the latest JDK for building
- name: Load Maven dependencies cache
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: "zulu"
java-version: "21" # Always use the latest JDK for building
java-version: "22" # Always use the latest JDK for building
- name: Load Maven dependencies cache
uses: actions/cache@v3
with:
Expand Down

0 comments on commit 59fcb26

Please sign in to comment.