Skip to content

Commit a26b4e3

Browse files
Update all dependencies
| datasource | package | from | to | | -------------- | --------------------------------------------------------------- | ------ | ------ | | github-tags | actions/cache | v3.3.3 | v3.4.0 | | gradle-version | gradle | 7.6.3 | 7.6.4 | | maven | io.kotest:kotest-runner-junit5-jvm | 5.8.0 | 5.9.1 | | maven | io.kotest:kotest-assertions-core | 5.8.0 | 5.9.1 | | maven | io.kotest:kotest-property | 5.8.0 | 5.9.1 | | maven | io.arrow-kt:arrow-fx-coroutines | 1.2.1 | 1.2.4 | | maven | org.jetbrains.kotlinx:kotlinx-coroutines-core | 1.7.3 | 1.10.1 | | maven | io.arrow-kt:arrow-optics | 1.2.1 | 1.2.4 | | maven | io.arrow-kt:arrow-core | 1.2.1 | 1.2.4 | | maven | io.kotest.multiplatform:io.kotest.multiplatform.gradle.plugin | 5.8.0 | 5.9.1 | | maven | org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin | 1.9.22 | 1.9.25 |
1 parent 4ccaf3c commit a26b4e3

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- name: Restore Gradle cache
2020
id: cache
21-
uses: actions/cache@v3.3.3
21+
uses: actions/cache@v3.4.0
2222
with:
2323
path: |
2424
~/.gradle/caches

build.gradle.kts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
kotlin("jvm") version "1.9.22"
3-
id("io.kotest.multiplatform") version "5.8.0"
2+
kotlin("jvm") version "1.9.25"
3+
id("io.kotest.multiplatform") version "5.9.1"
44
}
55

66
group = "org.example"
@@ -16,15 +16,15 @@ tasks.withType<Test> {
1616

1717
dependencies {
1818
implementation(kotlin("stdlib"))
19-
implementation("io.arrow-kt:arrow-core:1.2.1")
20-
implementation("io.arrow-kt:arrow-optics:1.2.1")
21-
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
22-
implementation("io.arrow-kt:arrow-fx-coroutines:1.2.1")
19+
implementation("io.arrow-kt:arrow-core:1.2.4")
20+
implementation("io.arrow-kt:arrow-optics:1.2.4")
21+
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1")
22+
implementation("io.arrow-kt:arrow-fx-coroutines:1.2.4")
2323

24-
testImplementation("io.kotest:kotest-property:5.8.0")
25-
testImplementation("io.kotest:kotest-assertions-core:5.8.0")
24+
testImplementation("io.kotest:kotest-property:5.9.1")
25+
testImplementation("io.kotest:kotest-assertions-core:5.9.1")
2626
testImplementation("io.kotest.extensions:kotest-assertions-arrow:1.4.0")
2727
testImplementation("io.kotest.extensions:kotest-property-arrow:1.4.0") // optional
2828
testImplementation("io.kotest.extensions:kotest-property-arrow-optics:1.4.0") // optional
29-
testImplementation("io.kotest:kotest-runner-junit5-jvm:5.8.0")
29+
testImplementation("io.kotest:kotest-runner-junit5-jvm:5.9.1")
3030
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.4-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)