Commit 0af1c1a 1 parent b3ef0fc commit 0af1c1a Copy full SHA for 0af1c1a
File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 25
25
- name : Set up JDK 21
26
26
uses : actions/setup-java@v4
27
27
with :
28
- java-version : ' 21 '
28
+ java-version : ' 23 '
29
29
distribution : ' temurin'
30
30
31
31
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
Original file line number Diff line number Diff line change 1
1
@file:Suppress(" VulnerableLibrariesLocal" , " SpellCheckingInspection" )
2
2
3
+ import org.gradle.api.JavaVersion.VERSION_21
3
4
import org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_21
4
5
5
6
@@ -27,6 +28,10 @@ kotlin {
27
28
compilerOptions.optIn.add(" kotlinx.serialization.ExperimentalSerializationApi" )
28
29
}
29
30
}
31
+ java {
32
+ sourceCompatibility = VERSION_21
33
+ targetCompatibility = VERSION_21
34
+ }
30
35
tasks.test {
31
36
useJUnitPlatform()
32
37
}
You can’t perform that action at this time.
0 commit comments