Skip to content

Commit 23a1544

Browse files
Update all dependencies
1 parent 8ddb21f commit 23a1544

File tree

9 files changed

+33
-33
lines changed

9 files changed

+33
-33
lines changed

.github/workflows/apply_spotless.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ jobs:
3030

3131
steps:
3232
- name: Checkout Repository
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v6
3434
with:
3535
token: ${{ secrets.PAT || github.token }}
3636
fetch-depth: 0
3737

3838
- name: set up Java 17
39-
uses: actions/setup-java@v4
39+
uses: actions/setup-java@v5
4040
with:
4141
distribution: 'zulu'
4242
java-version: '17'
@@ -45,6 +45,6 @@ jobs:
4545
run: ./gradlew spotlessApply --stacktrace
4646

4747
- name: Auto-commit if spotlessApply has changes
48-
uses: stefanzweifel/git-auto-commit-action@v5
48+
uses: stefanzweifel/git-auto-commit-action@v7
4949
with:
5050
commit_message: Apply Spotless

.github/workflows/build-ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
xcode-version: latest-stable
4040

4141
- name: Checkout
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343

4444
- name: Build iOS app
4545
uses: mxcl/xcodebuild@v3

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ jobs:
2929
timeout-minutes: 30
3030

3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v6
3333
with:
3434
token: ${{ secrets.PAT || github.token }}
3535
- name: set up Java 25
36-
uses: actions/setup-java@v4
36+
uses: actions/setup-java@v5
3737
with:
3838
distribution: 'zulu'
3939
java-version: '25'

.github/workflows/sync_main_latest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Syncing branches
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515

1616
- name: Set git config user
1717
run: git config user.email "[email protected]" && git config user.name "compose-devrel-github-bot"
@@ -21,7 +21,7 @@ jobs:
2121

2222
- name: Create pull request
2323
id: cpr
24-
uses: peter-evans/create-pull-request@v7
24+
uses: peter-evans/create-pull-request@v8
2525
with:
2626
token: ${{ secrets.PAT }}
2727
commit-message: 🤖 Sync main to latest

.github/workflows/update_deps.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
build:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v6
1111
- name: set up JDK 17
12-
uses: actions/setup-java@v4
12+
uses: actions/setup-java@v5
1313
with:
1414
java-version: 17
1515
distribution: 'zulu'
@@ -19,7 +19,7 @@ jobs:
1919
run: ./gradlew versionCatalogUpdate
2020
- name: Create pull request
2121
id: cpr
22-
uses: peter-evans/create-pull-request@v7
22+
uses: peter-evans/create-pull-request@v8
2323
with:
2424
token: ${{ secrets.PAT }}
2525
commit-message: 🤖 Update Dependencies

datastore/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ dependencies {
104104
// [START android_datastore_proto_task]
105105
protobuf {
106106
protoc {
107-
artifact = "com.google.protobuf:protoc:4.32.1"
107+
artifact = "com.google.protobuf:protoc:4.33.2"
108108
}
109109
generateProtoTasks {
110110
all().forEach { task ->

gradle/libs.versions.toml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[versions]
22
accompanist = "0.36.0"
3-
activityKtx = "1.12.1"
3+
activityKtx = "1.12.2"
44
android-googleid = "1.1.1"
55
androidGradlePlugin = "8.13.2"
6-
androidx-activity-compose = "1.12.1"
7-
androidx-appcompat = "1.7.0"
8-
androidx-compose-bom = "2025.12.00"
6+
androidx-activity-compose = "1.12.2"
7+
androidx-appcompat = "1.7.1"
8+
androidx-compose-bom = "2025.12.01"
99
androidx-compose-ui-test = "1.7.0-alpha08"
10-
androidx-compose-ui-test-junit4-accessibility = "1.11.0-alpha01"
10+
androidx-compose-ui-test-junit4-accessibility = "1.11.0-alpha02"
1111
androidx-constraintlayout = "2.2.1"
1212
androidx-constraintlayout-compose = "1.1.1"
1313
androidx-coordinator-layout = "1.3.0"
1414
androidx-corektx = "1.17.0"
15-
androidx-credentials = "1.6.0-beta03"
16-
androidx-credentials-play-services-auth = "1.6.0-beta03"
15+
androidx-credentials = "1.6.0-rc01"
16+
androidx-credentials-play-services-auth = "1.6.0-rc01"
1717
androidx-emoji2-views = "1.6.0"
1818
androidx-fragment = "1.8.9"
1919
androidx-glance-appwidget = "1.1.1"
@@ -46,35 +46,35 @@ dataStore = "1.2.0"
4646
datastoreCore = "1.2.0"
4747
datastorePreferencesRxjava2 = "1.2.0"
4848
datastorePreferencesRxjava3 = "1.2.0"
49-
firebase-bom = "34.6.0"
49+
firebase-bom = "34.7.0"
5050
glide = "1.0.0-beta08"
51-
google-ar-core = "1.51.0"
51+
google-ar-core = "1.52.0"
5252
google-maps = "19.2.0"
5353
gradle-versions = "0.53.0"
5454
guava = "33.5.0-jre"
5555
guava-android = "33.5.0-jre"
5656
hilt = "2.57.2"
5757
horologist = "0.8.3-alpha"
5858
junit = "4.13.2"
59-
kotlin = "2.2.21"
59+
kotlin = "2.3.0"
6060
kotlinCoroutinesOkhttp = "1.0"
6161
kotlinxCoroutinesGuava = "1.10.2"
6262
kotlinxSerializationJson = "1.9.0"
63-
ksp = "2.3.3"
63+
ksp = "2.3.4"
6464
ktlint = "1.5.0"
6565
lifecycleService = "2.10.0"
66-
maps-compose = "6.12.2"
67-
material = "1.14.0-alpha07"
66+
maps-compose = "7.0.0"
67+
material = "1.14.0-alpha08"
6868
material3-adaptive = "1.2.0"
6969
material3-adaptive-navigation-suite = "1.4.0"
70-
media3 = "1.8.0"
71-
media3Ui = "1.8.0"
70+
media3 = "1.9.0"
71+
media3Ui = "1.9.0"
7272
# @keep
7373
minSdk = "36"
7474
okHttp = "5.3.2"
7575
playServicesWearable = "19.0.0"
76-
protobuf = "4.33.1"
77-
protoc = "0.9.5"
76+
protobuf = "4.33.2"
77+
protoc = "0.9.6"
7878
protolayout = "1.3.0"
7979
reactive-streams = "1.0.4"
8080
recyclerview = "1.4.0"
@@ -94,7 +94,7 @@ wearComposeMaterial3 = "1.5.6"
9494
wearInput = "1.2.0"
9595
wearOngoing = "1.1.0"
9696
wearToolingPreview = "1.0.0"
97-
webkit = "1.14.0"
97+
webkit = "1.15.0"
9898
wearPhoneInteractions = "1.1.0"
9999
wearRemoteInteractions = "1.1.0"
100100

@@ -249,7 +249,7 @@ compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "
249249
google-protobuf = { id = "com.google.protobuf", version.ref = "protoc" }
250250
gradle-versions = { id = "com.github.ben-manes.versions", version.ref = "gradle-versions" }
251251
hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
252-
kotlin-android = "org.jetbrains.kotlin.android:2.2.21"
252+
kotlin-android = "org.jetbrains.kotlin.android:2.3.0"
253253
kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
254254
kotlin-parcelize = { id = "org.jetbrains.kotlin.plugin.parcelize", version.ref = "kotlin" }
255255
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }

gradle/wrapper/gradle-wrapper.properties

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-9.1.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pluginManagement {
88
}
99
}
1010
plugins {
11-
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
11+
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
1212
}
1313
dependencyResolutionManagement {
1414
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)

0 commit comments

Comments
 (0)