Skip to content

Commit 52369e0

Browse files
Merge branch 'main' into dependabot/gradle/org.jetbrains.kotlinx-kotlinx-cli-0.3.6
2 parents 395373a + 5ac0bca commit 52369e0

4 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/build.yml

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

1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313

1414
- name: Copy CI gradle.properties
1515
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
- name: Copy CI gradle.properties
2424
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
@@ -41,7 +41,7 @@ jobs:
4141
run: ./gradlew --stacktrace clean assemble
4242

4343
- name: Setup Gradle
44-
uses: gradle/actions/setup-gradle@ac638b010cf58a27ee6c972d7336334ccaf61c96 # v4.4.1
44+
uses: gradle/actions/setup-gradle@017a9effdb900e5b5b2fddfb590a105619dca3c3 # v4.4.2
4545

4646
- name: Publish package
4747
run: ./gradlew publishAllPublicationsToGithubPackagesRepository

gradle/libs.versions.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[versions]
2-
agp = "8.11.0"
3-
kotlin = "2.2.0"
2+
agp = "8.12.1"
3+
kotlin = "2.2.10"
44
kotlinx-coroutines = "1.10.2"
55
android-minSdk = "24"
66
android-compileSdk = "35"
7-
kotlinxSerializationJson = "1.8.1"
8-
ktorClientCore = "3.1.3"
7+
kotlinxSerializationJson = "1.9.0"
8+
ktorClientCore = "3.2.3"
99
ktorClientPlugins = "3.1.1"
1010
logbackClassic = "1.5.18"
11-
kotlinxIo = "0.7.0"
11+
kotlinxIo = "0.8.0"
1212
kotlinxCli = "0.3.6"
1313
nexus-publish = "2.0.0"
1414
testng = "7.10.2"
15-
binaryCompatibility = "0.18.0"
16-
moduleGraphSouza = "0.12.0"
15+
binaryCompatibility = "0.18.1"
16+
moduleGraphSouza = "0.12.1"
1717

1818
[libraries]
1919
kotlinx-coroutines = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version.ref = "kotlinx-coroutines" }
@@ -36,4 +36,4 @@ jetbrainsKotlinJvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
3636
kotlinSerialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
3737
binaryCompatibility = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version.ref = "binaryCompatibility" }
3838
modulegraph-souza = { id = "dev.iurysouza.modulegraph", version.ref = "moduleGraphSouza" }
39-
vanniktech-mavenPublish = { id = "com.vanniktech.maven.publish", version = "0.33.0" }
39+
vanniktech-mavenPublish = { id = "com.vanniktech.maven.publish", version = "0.34.0" }

model-zoo/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,19 +67,19 @@ kotlin {
6767

6868
val androidMain by getting {
6969
dependencies {
70-
implementation("io.ktor:ktor-client-android:3.1.3")
70+
implementation("io.ktor:ktor-client-android:3.2.3")
7171
}
7272
}
7373

7474
val wasmJsMain by getting {
7575
dependencies {
76-
implementation("io.ktor:ktor-client-js:3.1.3")
76+
implementation("io.ktor:ktor-client-js:3.2.3")
7777
}
7878
}
7979

8080
val iosMain by creating {
8181
dependencies {
82-
implementation("io.ktor:ktor-client-darwin:3.1.3")
82+
implementation("io.ktor:ktor-client-darwin:3.2.3")
8383
}
8484
}
8585
}

0 commit comments

Comments
 (0)