We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bbf9a56 + 7145a10 commit d5382adCopy full SHA for d5382ad
.github/workflows/ci.yml
@@ -43,7 +43,7 @@ jobs:
43
matrix:
44
kind: [maven, gradle]
45
# Test on the latest Java version once Gradle & Maven support it.
46
- jre: [11, 17, 21]
+ jre: [11, 17, 21, 22]
47
os: [ubuntu-latest]
48
include:
49
# 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 22:
+ case 23:
58
// TODO: https://docs.gradle.org/current/userguide/compatibility.html
59
+ case 22:
60
+ minVersionForRunningJRE = "8.8";
61
+ break;
62
case 21:
63
minVersionForRunningJRE = "8.5";
64
break;
0 commit comments