From 09eb45dd2ceb5dcf004b949d0d75a435f7090c84 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 19:50:55 +0000 Subject: [PATCH] Update all dependencies | datasource | package | from | to | | ----------- | --------------------------------------------------------------------------------------------------------------- | ------ | ------ | | github-tags | JamesIves/github-pages-deploy-action | v4.6.9 | v4.7.2 | | maven | dev.drewhamilton.poko:dev.drewhamilton.poko.gradle.plugin | 0.17.2 | 0.18.0 | | maven | org.jetbrains.kotlin.multiplatform:org.jetbrains.kotlin.multiplatform.gradle.plugin | 2.0.21 | 2.1.0 | | maven | org.gradle.toolchains.foojay-resolver-convention:org.gradle.toolchains.foojay-resolver-convention.gradle.plugin | 0.8.0 | 0.9.0 | --- .github/workflows/build.yml | 2 +- .github/workflows/publish-release.yml | 2 +- build.gradle.kts | 4 ++-- settings.gradle.kts | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d480c99b..98701e4c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -151,7 +151,7 @@ jobs: - name: Deploy docs 🚀 to website if: ${{ github.ref == 'refs/heads/master' && github.repository == 'hoc081098/FlowExt' && matrix.os == 'macos-14' }} - uses: JamesIves/github-pages-deploy-action@v4.6.9 + uses: JamesIves/github-pages-deploy-action@v4.7.2 with: branch: gh-pages # The branch the action should deploy to. folder: build/dokka/html # The folder the action should deploy. diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 7fe77784..74ebea09 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -103,7 +103,7 @@ jobs: - name: Deploy docs 🚀 to website if: ${{ matrix.os == 'macos-14' }} - uses: JamesIves/github-pages-deploy-action@v4.6.9 + uses: JamesIves/github-pages-deploy-action@v4.7.2 with: branch: gh-pages # The branch the action should deploy to. folder: build/dokka/html # The folder the action should deploy. diff --git a/build.gradle.kts b/build.gradle.kts index 13c160ea..adfe23dd 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,14 +12,14 @@ import org.jetbrains.kotlin.gradle.plugin.mpp.NativeBuildType import java.net.URL plugins { - kotlin("multiplatform") version "2.0.21" + kotlin("multiplatform") version "2.1.0" id("com.diffplug.spotless") version "6.25.0" id("maven-publish") id("com.vanniktech.maven.publish") version "0.30.0" id("org.jetbrains.kotlinx.binary-compatibility-validator") version "0.16.3" id("org.jetbrains.dokka") version "1.9.20" id("org.jetbrains.kotlinx.kover") version "0.8.3" - id("dev.drewhamilton.poko") version "0.17.2" + id("dev.drewhamilton.poko") version "0.18.0" } val coroutinesVersion = "1.9.0" diff --git a/settings.gradle.kts b/settings.gradle.kts index 0dbcc3b6..e5c0d8fa 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -2,5 +2,5 @@ rootProject.name = "FlowExt" plugins { - id("org.gradle.toolchains.foojay-resolver-convention") version("0.8.0") + id("org.gradle.toolchains.foojay-resolver-convention") version("0.9.0") }