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.2         | v3.4.0 |
| gradle-version | gradle                                                        | 7.4.2          | 7.6.4  |
| maven          | io.kotest.extensions:kotest-property-arrow-optics             | 1.2.5          | 1.4.0  |
| maven          | io.kotest.extensions:kotest-property-arrow                    | 1.2.5          | 1.4.0  |
| maven          | io.kotest.extensions:kotest-assertions-arrow                  | 1.2.5          | 1.4.0  |
| maven          | io.kotest:kotest-assertions-core                              | 5.3.0          | 5.9.1  |
| maven          | io.kotest:kotest-property                                     | 5.3.0          | 5.9.1  |
| maven          | io.arrow-kt:arrow-fx-coroutines                               | 1.1.3-alpha.39 | 1.2.4  |
| maven          | org.jetbrains.kotlinx:kotlinx-coroutines-core                 | 1.6.1          | 1.10.1 |
| maven          | io.arrow-kt:arrow-optics                                      | 1.1.3-alpha.39 | 1.2.4  |
| maven          | io.arrow-kt:arrow-core                                        | 1.1.3-alpha.39 | 1.2.4  |
| maven          | org.jetbrains.kotlin.js:org.jetbrains.kotlin.js.gradle.plugin | 1.6.21         | 1.9.25 |
  • Loading branch information
renovate[bot] authored Jan 23, 2025
1 parent 49f1b3c commit 283d8e8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 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.2
uses: actions/cache@v3.4.0
with:
path: |
~/.gradle/caches
Expand Down
20 changes: 10 additions & 10 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
kotlin("js") version "1.6.21"
kotlin("js") version "1.9.25"
}

group = "org.example"
Expand All @@ -11,16 +11,16 @@ repositories {

dependencies {
implementation(kotlin("stdlib-js"))
implementation("io.arrow-kt:arrow-core:1.1.3-alpha.39")
implementation("io.arrow-kt:arrow-optics:1.1.3-alpha.39")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1")
implementation("io.arrow-kt:arrow-fx-coroutines:1.1.3-alpha.39")
implementation("io.arrow-kt:arrow-core:1.2.4")
implementation("io.arrow-kt:arrow-optics:1.2.4")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1")
implementation("io.arrow-kt:arrow-fx-coroutines:1.2.4")

testImplementation("io.kotest:kotest-property:5.3.0")
testImplementation("io.kotest:kotest-assertions-core:5.3.0")
testImplementation("io.kotest.extensions:kotest-assertions-arrow:1.2.5")
testImplementation("io.kotest.extensions:kotest-property-arrow:1.2.5") // optional
testImplementation("io.kotest.extensions:kotest-property-arrow-optics:1.2.5") // optional
testImplementation("io.kotest:kotest-property:5.9.1")
testImplementation("io.kotest:kotest-assertions-core:5.9.1")
testImplementation("io.kotest.extensions:kotest-assertions-arrow:1.4.0")
testImplementation("io.kotest.extensions:kotest-property-arrow:1.4.0") // optional
testImplementation("io.kotest.extensions:kotest-property-arrow-optics:1.4.0") // optional
}

kotlin {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 283d8e8

Please sign in to comment.