We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 395a79a commit 74dd4beCopy full SHA for 74dd4be
.github/workflows/ci.yml
@@ -41,7 +41,7 @@ jobs:
41
matrix:
42
kind: [maven, gradle]
43
# Test on the latest Java version once Gradle & Maven support it.
44
- jre: [11, 17, 21, 23]
+ jre: [11, 17, 21, 24]
45
os: [ubuntu-latest]
46
include:
47
# test windows at the diagonals of the above matrix
plugin-gradle/src/test/java/com/diffplug/gradle/spotless/GradleIntegrationHarness.java
@@ -54,8 +54,11 @@ public enum GradleVersionSupport {
54
GradleVersionSupport(String version) {
55
String minVersionForRunningJRE;
56
switch (Jvm.version()) {
57
- case 24:
+ case 25:
58
// TODO: https://docs.gradle.org/current/userguide/compatibility.html
59
+ case 24:
60
+ minVersionForRunningJRE = "8.14";
61
+ break;
62
case 23:
63
minVersionForRunningJRE = "8.10";
64
break;
0 commit comments