Skip to content

Commit 0a2ea01

Browse files
Update all dependencies
| datasource | package | from | to | | -------------- | ------------------------------------------------------------- | -------------- | ------ | | github-tags | actions/cache | v3.0.2 | v4.2.4 | | github-tags | actions/checkout | v3 | v5 | | gradle-version | gradle | 7.4.2 | 9.0.0 | | maven | io.kotest.extensions:kotest-property-arrow-optics | 1.2.5 | 2.0.0 | | maven | io.kotest.extensions:kotest-property-arrow | 1.2.5 | 2.0.0 | | maven | io.kotest.extensions:kotest-assertions-arrow | 1.2.5 | 2.0.0 | | maven | io.kotest:kotest-assertions-core | 5.3.0 | 6.0.2 | | maven | io.kotest:kotest-property | 5.3.0 | 6.0.2 | | maven | io.arrow-kt:arrow-fx-coroutines | 1.1.3-alpha.39 | 2.1.2 | | maven | io.arrow-kt:arrow-optics | 1.1.3-alpha.39 | 2.1.2 | | maven | io.arrow-kt:arrow-core | 1.1.3-alpha.39 | 2.1.2 | | maven | org.jetbrains.kotlin.js:org.jetbrains.kotlin.js.gradle.plugin | 1.6.21 | 2.2.10 |
1 parent 49f1b3c commit 0a2ea01

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818

1919
- name: Restore Gradle cache
2020
id: cache
21-
uses: actions/cache@v3.0.2
21+
uses: actions/cache@v4.2.4
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,5 +1,5 @@
11
plugins {
2-
kotlin("js") version "1.6.21"
2+
kotlin("js") version "2.2.10"
33
}
44

55
group = "org.example"
@@ -11,16 +11,16 @@ repositories {
1111

1212
dependencies {
1313
implementation(kotlin("stdlib-js"))
14-
implementation("io.arrow-kt:arrow-core:1.1.3-alpha.39")
15-
implementation("io.arrow-kt:arrow-optics:1.1.3-alpha.39")
14+
implementation("io.arrow-kt:arrow-core:2.1.2")
15+
implementation("io.arrow-kt:arrow-optics:2.1.2")
1616
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1")
17-
implementation("io.arrow-kt:arrow-fx-coroutines:1.1.3-alpha.39")
17+
implementation("io.arrow-kt:arrow-fx-coroutines:2.1.2")
1818

19-
testImplementation("io.kotest:kotest-property:5.3.0")
20-
testImplementation("io.kotest:kotest-assertions-core:5.3.0")
21-
testImplementation("io.kotest.extensions:kotest-assertions-arrow:1.2.5")
22-
testImplementation("io.kotest.extensions:kotest-property-arrow:1.2.5") // optional
23-
testImplementation("io.kotest.extensions:kotest-property-arrow-optics:1.2.5") // optional
19+
testImplementation("io.kotest:kotest-property:6.0.2")
20+
testImplementation("io.kotest:kotest-assertions-core:6.0.2")
21+
testImplementation("io.kotest.extensions:kotest-assertions-arrow:2.0.0")
22+
testImplementation("io.kotest.extensions:kotest-property-arrow:2.0.0") // optional
23+
testImplementation("io.kotest.extensions:kotest-property-arrow-optics:2.0.0") // optional
2424
}
2525

2626
kotlin {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)