Skip to content

Commit 8dcd4ab

Browse files
fix(deps): update all dependencies
1 parent eaf37a6 commit 8dcd4ab

File tree

5 files changed

+38
-38
lines changed

5 files changed

+38
-38
lines changed

.github/workflows/build.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414
name: Lint
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v3
18-
- uses: actions/setup-java@v3
17+
- uses: actions/checkout@v4
18+
- uses: actions/setup-java@v4
1919
with:
2020
distribution: temurin
2121
java-version: 11
2222

2323
- name: Setup Gradle
24-
uses: gradle/gradle-build-action@v2
24+
uses: gradle/gradle-build-action@v3
2525
with:
2626
gradle-version: wrapper
2727
- name: Run lint
@@ -33,19 +33,19 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737

3838
- name: Configure JDK
39-
uses: actions/setup-java@v3
39+
uses: actions/setup-java@v4
4040
with:
4141
distribution: temurin
4242
java-version: 11
4343

4444
- name: Setup Android SDK
45-
uses: android-actions/setup-android@v2
45+
uses: android-actions/setup-android@v3
4646

4747
- name: Setup Gradle
48-
uses: gradle/gradle-build-action@v2
48+
uses: gradle/gradle-build-action@v3
4949
with:
5050
gradle-version: wrapper
5151

.github/workflows/deploy.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616

1717
- name: Configure JDK
18-
uses: actions/setup-java@v3
18+
uses: actions/setup-java@v4
1919
with:
2020
distribution: temurin
2121
java-version: 11
2222

2323
- name: Setup Android SDK
24-
uses: android-actions/setup-android@v2
24+
uses: android-actions/setup-android@v3
2525

2626
- name: Setup Gradle
27-
uses: gradle/gradle-build-action@v2
27+
uses: gradle/gradle-build-action@v3
2828

2929
- name: Upload Artifacts
3030
run: ./gradlew publishAndReleaseToMavenCentral --no-configuration-cache

.tool-versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
java temurin-11.0.22+7
1+
java temurin-21.0.6+7.0.LTS

gradle/libs.versions.toml

+25-25
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,59 @@
11
[versions]
2-
kotlin = "1.8.20"
3-
composeUi = "1.3.3"
2+
kotlin = "2.1.10"
3+
composeUi = "1.7.7"
44
composeCompiler = "1.4.6"
5-
coroutines = "1.6.4"
6-
ktor = "2.2.4"
7-
work = "2.8.0"
5+
coroutines = "1.10.1"
6+
ktor = "3.0.3"
7+
work = "2.10.0"
88
serialization = "1.5.1"
99

1010
[libraries]
1111
# algolia
12-
algolia-client = { group = "com.algolia", name = "algoliasearch-client-kotlin", version = "2.1.12" }
12+
algolia-client = { group = "com.algolia", name = "algoliasearch-client-kotlin", version = "3.14.0" }
1313
algolia-telemetry = { group = "com.algolia", name = "instantsearch-telemetry", version = "0.2.0" }
1414

1515
# network
1616
ktor-client-okhttp = { group = "io.ktor", name = "ktor-client-okhttp", version.ref = "ktor" }
1717
ktor-client-serialization-json = { group = "io.ktor", name = "ktor-serialization-kotlinx-json", version.ref = "ktor" }
1818

1919
# kotlin
20-
kotlinx-atomicfu = { group = "org.jetbrains.kotlinx", name = "atomicfu", version = "0.20.0" }
20+
kotlinx-atomicfu = { group = "org.jetbrains.kotlinx", name = "atomicfu", version = "0.27.0" }
2121
kotlinx-coroutines-core = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version.ref = "coroutines" }
2222
kotlinx-coroutines-android = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-android", version.ref = "coroutines" }
2323

2424
# android
2525
androidx-compose-ui = { group = "androidx.compose.ui", name = "ui", version.ref = "composeUi" }
26-
androidx-compose-material = { group = "androidx.compose.material", name = "material", version = "1.3.1" }
27-
androidx-compose-material-icons-extended = { group = "androidx.compose.material", name = "material-icons-extended", version = "1.3.1" }
28-
androidx-paging3 = { group = "androidx.paging", name = "paging-runtime", version = "3.1.1" }
26+
androidx-compose-material = { group = "androidx.compose.material", name = "material", version = "1.7.7" }
27+
androidx-compose-material-icons-extended = { group = "androidx.compose.material", name = "material-icons-extended", version = "1.7.7" }
28+
androidx-paging3 = { group = "androidx.paging", name = "paging-runtime", version = "3.3.5" }
2929
androidx-work = { group = "androidx.work", name = "work-runtime-ktx", version.ref = "work" }
30-
androidx-core = { group = "androidx.core", name = "core-ktx", version = "1.9.0" }
31-
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version = "1.6.1" }
32-
androidx-recyclerview = { group = "androidx.recyclerview", name = "recyclerview", version = "1.2.1" }
30+
androidx-core = { group = "androidx.core", name = "core-ktx", version = "1.15.0" }
31+
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version = "1.7.0" }
32+
androidx-recyclerview = { group = "androidx.recyclerview", name = "recyclerview", version = "1.4.0" }
3333
androidx-swiperefreshlayout = { group = "androidx.swiperefreshlayout", name = "swiperefreshlayout", version = "1.1.0" }
34-
google-material = { group = "com.google.android.material", name = "material", version = "1.8.0" }
34+
google-material = { group = "com.google.android.material", name = "material", version = "1.12.0" }
3535

3636
# test
37-
test-androidx-ext = { group = "androidx.test.ext", name = "junit", version = "1.1.5" }
38-
test-androidx-runner = { group = "androidx.test", name = "runner", version = "1.5.2" }
39-
test-androidx-espresso = { group = "androidx.test.espresso", name = "espresso-core", version = "3.5.1" }
37+
test-androidx-ext = { group = "androidx.test.ext", name = "junit", version = "1.2.1" }
38+
test-androidx-runner = { group = "androidx.test", name = "runner", version = "1.6.2" }
39+
test-androidx-espresso = { group = "androidx.test.espresso", name = "espresso-core", version = "3.6.1" }
4040
test-androidx-work = { group = "androidx.work", name = "work-testing", version.ref = "work" }
4141
test-coroutines = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-test", version.ref = "coroutines" }
4242
test-ktor-client-mock = { group = "io.ktor", name = "ktor-client-mock", version.ref = "ktor" }
4343
test-kotlin-common = { module = "org.jetbrains.kotlin:kotlin-test-common" }
4444
test-kotlin-annotations = { module = "org.jetbrains.kotlin:kotlin-test-annotations-common" }
4545
test-kotlin-junit = { module = "org.jetbrains.kotlin:kotlin-test-junit" }
46-
test-mockk = { group = "io.mockk", name = "mockk", version = "1.13.4" }
47-
test-robolectric = { group = "org.robolectric", name = "robolectric", version = "4.9.2" }
48-
test-turbine = { group = "app.cash.turbine", name = "turbine", version = "0.12.1" }
46+
test-mockk = { group = "io.mockk", name = "mockk", version = "1.13.16" }
47+
test-robolectric = { group = "org.robolectric", name = "robolectric", version = "4.14.1" }
48+
test-turbine = { group = "app.cash.turbine", name = "turbine", version = "1.2.0" }
4949

5050
# logging
51-
slf4j = { group = "org.slf4j", name = "slf4j-api", version = "2.0.6" }
52-
logback-classic = { group = "ch.qos.logback", name = "logback-classic", version = "1.4.5" }
51+
slf4j = { group = "org.slf4j", name = "slf4j-api", version = "2.0.16" }
52+
logback-classic = { group = "ch.qos.logback", name = "logback-classic", version = "1.5.16" }
5353

5454
[plugins]
5555
kotlin-multiplaform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
5656
kotlinx-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
57-
android = { id = "com.android.library", version = "7.4.2" }
58-
maven-publish = { id = "com.vanniktech.maven.publish", version = "0.27.0" }
59-
spotless = { id = "com.diffplug.gradle.spotless", version = "6.16.0" }
57+
android = { id = "com.android.library", version = "8.8.0" }
58+
maven-publish = { id = "com.vanniktech.maven.publish", version = "0.30.0" }
59+
spotless = { id = "com.diffplug.gradle.spotless", version = "7.0.2" }
+1-1
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.0.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)