Skip to content

Commit d6dc302

Browse files
Update all dependencies
1 parent aea6b59 commit d6dc302

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
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: 1 addition & 1 deletion
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"

.github/workflows/update_deps.yml

Lines changed: 2 additions & 2 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'

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ activityKtx = "1.12.1"
44
android-googleid = "1.1.1"
55
androidGradlePlugin = "8.13.1"
66
androidx-activity-compose = "1.12.1"
7-
androidx-appcompat = "1.7.0"
7+
androidx-appcompat = "1.7.1"
88
androidx-compose-bom = "2025.12.00"
99
androidx-compose-ui-test = "1.7.0-alpha08"
1010
androidx-compose-ui-test-junit4-accessibility = "1.11.0-alpha01"
@@ -73,7 +73,7 @@ media3Ui = "1.8.0"
7373
minSdk = "36"
7474
okHttp = "5.3.2"
7575
playServicesWearable = "19.0.0"
76-
protobuf = "4.33.1"
76+
protobuf = "4.33.2"
7777
protoc = "0.9.5"
7878
protolayout = "1.3.0"
7979
reactive-streams = "1.0.4"

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)