From f7f4468000f54315a7e619b8137898f896c8c69b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 18 Jan 2023 11:47:20 +0000 Subject: [PATCH] Update all dependencies | datasource | package | from | to | | ----------- | --------------------------------------------------------------- | ------------ | ----------- | | github-tags | actions/cache | v3.0.11 | v3.2.3 | | maven | io.arrow-kt:arrow-optics-ksp-plugin | 1.1.3 | 1.1.5 | | maven | io.arrow-kt:arrow-fx-coroutines | 1.1.3 | 1.1.5 | | maven | io.arrow-kt:arrow-optics | 1.1.3 | 1.1.5 | | maven | io.arrow-kt:arrow-core | 1.1.3 | 1.1.5 | | maven | com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin | 1.7.22-1.0.8 | 1.8.0-1.0.8 | | maven | org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin | 1.7.22 | 1.8.0 | --- .github/workflows/build.yaml | 2 +- build.gradle.kts | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 446c645..84b15d5 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -18,7 +18,7 @@ jobs: - name: Restore Gradle cache id: cache - uses: actions/cache@v3.0.11 + uses: actions/cache@v3.2.3 with: path: | ~/.gradle/caches diff --git a/build.gradle.kts b/build.gradle.kts index 50d15bf..0430017 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,7 +1,7 @@ plugins { - kotlin("jvm") version "1.7.22" + kotlin("jvm") version "1.8.0" id("io.kotest.multiplatform") version "5.5.4" - id("com.google.devtools.ksp") version "1.7.22-1.0.8" + id("com.google.devtools.ksp") version "1.8.0-1.0.8" } group = "org.example" @@ -20,11 +20,11 @@ repositories { dependencies { implementation(kotlin("stdlib")) - implementation("io.arrow-kt:arrow-core:1.1.3") - implementation("io.arrow-kt:arrow-optics:1.1.3") + implementation("io.arrow-kt:arrow-core:1.1.5") + implementation("io.arrow-kt:arrow-optics:1.1.5") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4") - implementation("io.arrow-kt:arrow-fx-coroutines:1.1.3") - ksp("io.arrow-kt:arrow-optics-ksp-plugin:1.1.3") + implementation("io.arrow-kt:arrow-fx-coroutines:1.1.5") + ksp("io.arrow-kt:arrow-optics-ksp-plugin:1.1.5") testImplementation("io.kotest:kotest-property:5.5.4") testImplementation("io.kotest:kotest-assertions-core:5.5.4")