From 987e7356c22e2f8063bb7e99cf9ea7a561bb0ab0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 8 Dec 2024 17:35:47 +0700 Subject: [PATCH] Update all dependencies (#315) [skip ci] | datasource | package | from | to | | ----------- | --------------------------------------------------------------------------------------------------------------- | ------ | ------ | | github-tags | JamesIves/github-pages-deploy-action | v4.6.9 | v4.7.2 | | github-tags | codecov/codecov-action | v5.0.7 | v5.1.1 | | 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 | Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 4 ++-- .github/workflows/publish-release.yml | 2 +- build.gradle.kts | 4 ++-- settings.gradle.kts | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d480c99b..b93479cc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -68,7 +68,7 @@ jobs: run: ./gradlew koverXmlReport - name: Upload Test Report - uses: codecov/codecov-action@v5.0.7 + uses: codecov/codecov-action@v5.1.1 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} @@ -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") }