Skip to content

Commit

Permalink
Add Java 23 into test matrix (#2264)
Browse files Browse the repository at this point in the history
  • Loading branch information
Goooler authored Dec 5, 2024
1 parent f23834c commit 263609e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
matrix:
kind: [maven, gradle]
# Test on the latest Java version once Gradle & Maven support it.
jre: [11, 17, 21, 22]
jre: [11, 17, 21, 23]
os: [ubuntu-latest]
include:
# test windows at the diagonals of the above matrix
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,11 @@ public enum GradleVersionSupport {
GradleVersionSupport(String version) {
String minVersionForRunningJRE;
switch (Jvm.version()) {
case 23:
case 24:
// TODO: https://docs.gradle.org/current/userguide/compatibility.html
case 23:
minVersionForRunningJRE = "8.10";
break;
case 22:
minVersionForRunningJRE = "8.8";
break;
Expand Down

0 comments on commit 263609e

Please sign in to comment.