Skip to content

Commit bc7512e

Browse files
fix(deps): update all dependencies
| datasource | package | from | to | | -------------- | --------------------------------------------------------------------------------------------------------------- | ----- | ----- | | github-tags | actions/checkout | v4 | v5 | | gradle-version | gradle | 8.7 | 9.0.0 | | maven | org.gradle.toolchains.foojay-resolver-convention:org.gradle.toolchains.foojay-resolver-convention.gradle.plugin | 0.8.0 | 1.0.0 | | maven | io.arrow-kt:suspendapp | 0.4.0 | 2.1.2 | | maven | org.apache.kafka:kafka-streams | 3.7.0 | 4.0.0 | | maven | org.apache.kafka:kafka-clients | 3.7.0 | 4.0.0 | | maven | org.apache.kafka:connect-runtime | 3.7.0 | 4.0.0 |
1 parent 28a059d commit bc7512e

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
timeout-minutes: 30
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
with:
1919
fetch-depth: 0
2020

.github/workflows/githubpages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
timeout-minutes: 20
1111

1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
with:
1515
fetch-depth: 0
1616

.github/workflows/pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
timeout-minutes: 120
1313

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

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
timeout-minutes: 30
2222
runs-on: macos-latest
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 0
2727

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
22
kotest = "5.8.1"
3-
kafka = "3.7.0"
3+
kafka = "4.0.0"
44
kotlin = "2.0.0-RC2"
55
kotlinx-coroutines = "1.8.0"
66
dokka = "2.0.0"
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-8.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

guide/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
dependencies {
1010
implementation(rootProject)
1111
implementation(libs.testcontainers.kafka)
12-
implementation("io.arrow-kt:suspendapp:0.4.0")
12+
implementation("io.arrow-kt:suspendapp:2.1.2")
1313
testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
1414
testImplementation("org.jetbrains.kotlinx:kotlinx-knit-test:0.5.0")
1515
}

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencyResolutionManagement {
99
}
1010

1111
plugins {
12-
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
12+
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
1313
}
1414

1515
include(":guide")

0 commit comments

Comments
 (0)