diff --git a/action-binding-generator/build.gradle.kts b/action-binding-generator/build.gradle.kts index 450fc0e99..ecd31282b 100644 --- a/action-binding-generator/build.gradle.kts +++ b/action-binding-generator/build.gradle.kts @@ -16,12 +16,12 @@ version = rootProject.version dependencies { implementation("com.squareup:kotlinpoet:2.3.0") implementation("com.charleskorn.kaml:kaml:0.104.0") - implementation("io.ktor:ktor-client-core:3.5.1") - implementation("io.ktor:ktor-client-cio:3.5.1") + implementation("io.ktor:ktor-client-core:3.5.2") + implementation("io.ktor:ktor-client-cio:3.5.2") implementation("io.github.oshai:kotlin-logging:8.0.4") implementation(projects.sharedInternal) - testImplementation("io.ktor:ktor-client-mock:3.5.1") + testImplementation("io.ktor:ktor-client-mock:3.5.2") testImplementation(projects.githubWorkflowsKt) } diff --git a/jit-binding-server/build.gradle.kts b/jit-binding-server/build.gradle.kts index 90c2c2aae..ff3b8fee2 100644 --- a/jit-binding-server/build.gradle.kts +++ b/jit-binding-server/build.gradle.kts @@ -8,7 +8,7 @@ plugins { } dependencies { - implementation(platform("io.ktor:ktor-bom:3.5.1")) + implementation(platform("io.ktor:ktor-bom:3.5.2")) implementation("io.ktor:ktor-server-core") implementation("io.ktor:ktor-server-netty") implementation("io.ktor:ktor-server-call-logging") @@ -30,7 +30,7 @@ dependencies { implementation(projects.sharedInternal) testImplementation("io.ktor:ktor-server-test-host") - testImplementation("io.ktor:ktor-client-mock:3.5.1") + testImplementation("io.ktor:ktor-client-mock:3.5.2") testImplementation("io.mockk:mockk:1.14.11") } diff --git a/maven-binding-builder/build.gradle.kts b/maven-binding-builder/build.gradle.kts index becef2193..d4afdf784 100644 --- a/maven-binding-builder/build.gradle.kts +++ b/maven-binding-builder/build.gradle.kts @@ -5,13 +5,13 @@ plugins { dependencies { implementation("org.jetbrains.kotlin:kotlin-compiler") api("io.arrow-kt:arrow-core:2.2.3") - api("io.ktor:ktor-client-core:3.5.1") + api("io.ktor:ktor-client-core:3.5.2") api(projects.actionBindingGenerator) implementation(projects.sharedInternal) implementation("io.github.oshai:kotlin-logging:8.0.4") runtimeOnly(projects.githubWorkflowsKt) - testImplementation("io.ktor:ktor-client-cio:3.5.1") + testImplementation("io.ktor:ktor-client-cio:3.5.2") testImplementation(projects.testUtils) } diff --git a/shared-internal/build.gradle.kts b/shared-internal/build.gradle.kts index ed880d05d..1e57d3251 100644 --- a/shared-internal/build.gradle.kts +++ b/shared-internal/build.gradle.kts @@ -13,12 +13,12 @@ dependencies { api("io.arrow-kt:arrow-core:2.2.3") // we cannot use a BOM due to limitation in kotlin scripting when resolving the transitive KMM variant dependencies // note: see https://youtrack.jetbrains.com/issue/KT-67618 - api("io.ktor:ktor-client-core:3.5.1") + api("io.ktor:ktor-client-core:3.5.2") api("io.micrometer:micrometer-core:1.17.0") - implementation("io.ktor:ktor-client-cio:3.5.1") - implementation("io.ktor:ktor-client-content-negotiation:3.5.1") - implementation("io.ktor:ktor-client-logging:3.5.1") - implementation("io.ktor:ktor-serialization-kotlinx-json:3.5.1") + implementation("io.ktor:ktor-client-cio:3.5.2") + implementation("io.ktor:ktor-client-content-negotiation:3.5.2") + implementation("io.ktor:ktor-client-logging:3.5.2") + implementation("io.ktor:ktor-serialization-kotlinx-json:3.5.2") implementation("io.github.oshai:kotlin-logging:8.0.4") implementation("com.auth0:java-jwt:4.6.0") implementation("org.kohsuke:github-api:1.330")