From 34b80c704762da0efa6135ba845225d731402838 Mon Sep 17 00:00:00 2001 From: Rasmus Ros Date: Sat, 8 Aug 2026 10:25:17 +0200 Subject: [PATCH] chore: take kbuild 1.2.8 and move CI to JDK 25 --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 2 +- build.gradle.kts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ada7387..4a7a755 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: uses: actions/setup-java@v5 with: distribution: temurin - java-version: 21 + java-version: 25 # Persists the Gradle home incl. the build and configuration caches across runs. - name: Set up Gradle diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3e8e298..017bde3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/setup-java@v5 with: distribution: temurin - java-version: '21' + java-version: 25 cache: gradle - name: Cache Kotlin/Native toolchain diff --git a/build.gradle.kts b/build.gradle.kts index 0450ad8..2615736 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,7 +1,7 @@ import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl plugins { - id("com.eignex.kmp") version "1.2.7" + id("com.eignex.kmp") version "1.2.8" kotlin("plugin.serialization") version "2.4.10" }