Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
| datasource     | package                                                         | from         | to            |
| -------------- | --------------------------------------------------------------- | ------------ | ------------- |
| github-tags    | actions/cache                                                   | v3.0.11      | v3.3.1        |
| gradle-version | gradle                                                          | 7.6          | 7.6.1         |
| maven          | io.kotest:kotest-runner-junit5-jvm                              | 5.5.4        | 5.6.2         |
| maven          | io.kotest.extensions:kotest-property-arrow-optics               | 1.3.0        | 1.3.3         |
| maven          | io.kotest.extensions:kotest-property-arrow                      | 1.3.0        | 1.3.3         |
| maven          | io.kotest.extensions:kotest-assertions-arrow                    | 1.3.0        | 1.3.3         |
| maven          | io.kotest:kotest-assertions-core                                | 5.5.4        | 5.6.2         |
| maven          | io.kotest:kotest-property                                       | 5.5.4        | 5.6.2         |
| 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          | org.jetbrains.kotlinx:kotlinx-coroutines-core                   | 1.6.4        | 1.7.1         |
| 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.21-1.0.11 |
| maven          | io.kotest.multiplatform:io.kotest.multiplatform.gradle.plugin   | 5.5.4        | 5.6.2         |
| maven          | org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin | 1.7.22       | 1.8.22        |
  • Loading branch information
renovate[bot] authored Jun 7, 2023
1 parent d95218b commit 592a56c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- name: Restore Gradle cache
id: cache
uses: actions/cache@v3.0.11
uses: actions/cache@v3.3.1
with:
path: |
~/.gradle/caches
Expand Down
28 changes: 14 additions & 14 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
kotlin("jvm") version "1.7.22"
id("io.kotest.multiplatform") version "5.5.4"
id("com.google.devtools.ksp") version "1.7.22-1.0.8"
kotlin("jvm") version "1.8.22"
id("io.kotest.multiplatform") version "5.6.2"
id("com.google.devtools.ksp") version "1.8.21-1.0.11"
}

group = "org.example"
Expand All @@ -20,18 +20,18 @@ repositories {

dependencies {
implementation(kotlin("stdlib"))
implementation("io.arrow-kt:arrow-core:1.1.3")
implementation("io.arrow-kt:arrow-optics:1.1.3")
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-core:1.1.5")
implementation("io.arrow-kt:arrow-optics:1.1.5")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1")
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")
testImplementation("io.kotest.extensions:kotest-assertions-arrow:1.3.0")
testImplementation("io.kotest.extensions:kotest-property-arrow:1.3.0") // optional
testImplementation("io.kotest.extensions:kotest-property-arrow-optics:1.3.0") // optional
testImplementation("io.kotest:kotest-runner-junit5-jvm:5.5.4")
testImplementation("io.kotest:kotest-property:5.6.2")
testImplementation("io.kotest:kotest-assertions-core:5.6.2")
testImplementation("io.kotest.extensions:kotest-assertions-arrow:1.3.3")
testImplementation("io.kotest.extensions:kotest-property-arrow:1.3.3") // optional
testImplementation("io.kotest.extensions:kotest-property-arrow-optics:1.3.3") // optional
testImplementation("io.kotest:kotest-runner-junit5-jvm:5.6.2")
}

tasks.withType<Test> {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 592a56c

Please sign in to comment.