Skip to content

Commit d1b1867

Browse files
committed
Update to Gradle 9.4.1
1 parent 5e3566c commit d1b1867

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/gradle.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ jobs:
153153
runs-on: ubuntu-latest
154154
strategy:
155155
matrix:
156-
gradle: [ '9.2.0', '9.1.0', '9.0.0' ]
156+
gradle: [ '9.3.1', '9.2.1', '9.1.0', '9.0.0' ]
157157
steps:
158158
- uses: actions/checkout@v6
159159

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,16 @@ tasks.compileKotlin {
5353
compilerOptions.freeCompilerArgs.add("-Xjdk-release=1.8")
5454
compilerOptions.jvmTarget = JvmTarget.JVM_1_8
5555

56-
// For Gradle 7.1 compatibility. Gradle 7.1 embeds Kotlin 1.4, but 1.8 is the earliest we can target,
56+
// For Gradle 7.1 compatibility. Gradle 7.1 embeds Kotlin 1.4, but 1.9 is the earliest we can target,
5757
// and there are enough tests to assert compatibility (particularly given the narrow scope of Kotlin use).
5858
// https://docs.gradle.org/current/userguide/compatibility.html#kotlin
5959
@Suppress("DEPRECATION")
60-
compilerOptions.apiVersion = KotlinVersion.KOTLIN_1_8
60+
compilerOptions.apiVersion = KotlinVersion.KOTLIN_1_9
6161
@Suppress("DEPRECATION")
62-
compilerOptions.languageVersion = KotlinVersion.KOTLIN_1_8
62+
compilerOptions.languageVersion = KotlinVersion.KOTLIN_1_9
6363

6464
compilerOptions.allWarningsAsErrors = true
65-
// Using Kotlin 1.8 above emits a warning that would then fail the build with allWarningsAsErrors
65+
// Using Kotlin 1.9 above emits a warning that would then fail the build with allWarningsAsErrors
6666
compilerOptions.freeCompilerArgs.add("-Xsuppress-version-warnings")
6767
}
6868

gradle/wrapper/gradle-wrapper.jar

2.73 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=b266d5ff6b90eada6dc3b20cb090e3731302e553a27c5d3e4df1f0d76beaff06
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
3+
distributionSha256Sum=2ab2958f2a1e51120c326cad6f385153bb11ee93b3c216c5fccebfdfbb7ec6cb
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)