Skip to content

Commit eec0e81

Browse files
committed
test against JDK 25, drop testing of 23 and 24
1 parent 7996754 commit eec0e81

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/gradle-build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ jobs:
2020
with:
2121
distribution: 'temurin'
2222
java-version: | # the last one is default
23-
24
24-
23
23+
25
2524
21
2625
17
2726
cache: gradle

.sdkmanrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
java=17.0.15-tem
1+
java=17.0.16-tem
22
jreleaser=1.17.0

buildSrc/src/main/kotlin/framefork.java.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ tasks.named("test") {
180180
description = "Runs the tests against the default JDK"
181181
}
182182

183-
for (javaVersion in listOf(21, 23, 24)) {
183+
for (javaVersion in listOf(21, 25)) {
184184
val testTask = tasks.register<Test>("test-jdk${javaVersion}") {
185185
group = "Verification"
186186
description = "Runs the tests against JDK $javaVersion"

0 commit comments

Comments
 (0)