We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b96278 commit 7b72fb5Copy full SHA for 7b72fb5
2 files changed
.github/workflows/ci.yml
@@ -17,7 +17,7 @@ jobs:
17
- name: Set up JDK
18
uses: actions/setup-java@v5
19
with:
20
- java-version: '17'
+ java-version: '25'
21
distribution: 'corretto'
22
23
- name: Setup Gradle
buildSrc/src/main/kotlin/api-models-aws.model-conventions.gradle.kts
@@ -43,6 +43,16 @@ sourceSets {
43
}
44
45
46
+java {
47
+ toolchain {
48
+ languageVersion.set(JavaLanguageVersion.of(25))
49
+ }
50
+}
51
+
52
+tasks.withType<JavaCompile> {
53
+ options.release.set(8)
54
55
56
tasks {
57
build {
58
mustRunAfter(clean)
0 commit comments