From 118038503b4ab507ab26aec7682f9417401b28a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A5le=20Stor=C3=B8=20Hauknes?= <270292+LaStrada@users.noreply.github.com> Date: Tue, 4 Aug 2026 15:02:42 +0200 Subject: [PATCH] Bump the Gradle wrapper, checkout action and versions plugin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Gradle 8.14.4 -> 8.14.5, actions/checkout v6 -> v7, and the versions plugin 0.54.0 -> 0.59.0. Removing the buildscript classpath block is what makes the Gradle bump work. Those three entries interpolated `version.plugin.androidGradle`, `version.kotlin` and `version.plugin.outdated`, none of which exist in gradle.properties, so each resolved to the literal string "null". 8.14.4 tolerated it; 8.14.5 tries to resolve `gradle-versions-plugin:null` and fails. The block was already dead — the plugins block declares all three through the version catalog, as the comment above it says. Verified with `gradlew build` and `gradlew dependencyUpdates` on 8.14.5. --- .github/workflows/build.yml | 4 ++-- .github/workflows/publish.yml | 2 +- build.gradle.kts | 6 ------ gradle/libs.versions.toml | 2 +- gradle/wrapper/gradle-wrapper.properties | 2 +- 5 files changed, 5 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4418596..1a7e257 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Clone code" - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: "Lint code" @@ -23,7 +23,7 @@ jobs: runs-on: macos-latest steps: - name: "Clone code" - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: "Set up Adopt OpenJDK 17" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index dbd7ba5..bd2a9e4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,7 +12,7 @@ jobs: runs-on: macos-latest steps: - name: "Clone code" - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 fetch-tags: true diff --git a/build.gradle.kts b/build.gradle.kts index 5aac46c..5bbd010 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -30,12 +30,6 @@ buildscript { maven(url = "https://jitpack.io") maven(url = "https://plugins.gradle.org/m2/") } - - dependencies { - classpath("com.android.tools.build:gradle:${properties["version.plugin.androidGradle"]}") - classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${properties["version.kotlin"]}") - classpath("com.github.ben-manes:gradle-versions-plugin:${properties["version.plugin.outdated"]}") - } } repositories { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 7653ac8..b4ee0dd 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -6,7 +6,7 @@ stately = "2.1.0" androidGradle = "8.10.0" ktlint = "14.2.0" detekt = "1.23.8" -outdated = "0.54.0" +outdated = "0.59.0" kmmbridge = "1.2.1" privacy = "1.0.0" diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index e0f7619..98f357f 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ #Mon Jul 04 07:32:53 CEST 2022 distributionBase=GRADLE_USER_HOME -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.4-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.5-bin.zip distributionPath=wrapper/dists zipStorePath=wrapper/dists zipStoreBase=GRADLE_USER_HOME