Skip to content

Commit 2c9d33f

Browse files
Update all dependencies
1 parent 8e14096 commit 2c9d33f

File tree

6 files changed

+74
-74
lines changed

6 files changed

+74
-74
lines changed

.github/workflows/Build.yaml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ jobs:
2525

2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929

3030
- name: Copy CI gradle.properties
3131
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
3232

3333
- name: Set up JDK 21
34-
uses: actions/setup-java@v4
34+
uses: actions/setup-java@v5
3535
with:
3636
distribution: 'zulu'
3737
java-version: 21
3838

3939
- name: Setup Gradle
40-
uses: gradle/actions/setup-gradle@v4
40+
uses: gradle/actions/setup-gradle@v5
4141
with:
4242
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
4343
build-scan-publish: true
@@ -70,7 +70,7 @@ jobs:
7070
./gradlew dependencyGuardBaseline
7171
7272
- name: Push new Dependency Guard baselines if available
73-
uses: stefanzweifel/git-auto-commit-action@v5
73+
uses: stefanzweifel/git-auto-commit-action@v7
7474
if: steps.dependencyguard_baseline.outcome == 'success'
7575
with:
7676
file_pattern: '**/dependencies/*.txt'
@@ -93,7 +93,7 @@ jobs:
9393
9494
- name: Push new graphs if available
9595
if: steps.graphs_verify.outcome == 'failure' && github.event_name == 'pull_request'
96-
uses: stefanzweifel/git-auto-commit-action@v5
96+
uses: stefanzweifel/git-auto-commit-action@v7
9797
with:
9898
file_pattern: '**/README.md'
9999
disable_globbing: true
@@ -121,7 +121,7 @@ jobs:
121121
./gradlew recordRoborazziDemoDebug
122122
123123
- name: Push new screenshots if available
124-
uses: stefanzweifel/git-auto-commit-action@v5
124+
uses: stefanzweifel/git-auto-commit-action@v7
125125
if: steps.screenshotsrecord.outcome == 'success'
126126
with:
127127
file_pattern: '*/*.png'
@@ -136,21 +136,21 @@ jobs:
136136
run: ./gradlew :app:assemble -PminifyWithR8=false
137137

138138
- name: Upload build outputs (APKs)
139-
uses: actions/upload-artifact@v4
139+
uses: actions/upload-artifact@v5
140140
with:
141141
name: APKs
142142
path: '**/build/outputs/apk/**/*.apk'
143143

144144
- name: Upload JVM local results (XML)
145145
if: ${{ !cancelled() }}
146-
uses: actions/upload-artifact@v4
146+
uses: actions/upload-artifact@v5
147147
with:
148148
name: local-test-results
149149
path: '**/build/test-results/test*UnitTest/**.xml'
150150

151151
- name: Upload screenshot results (PNG)
152152
if: ${{ !cancelled() }}
153-
uses: actions/upload-artifact@v4
153+
uses: actions/upload-artifact@v5
154154
with:
155155
name: screenshot-test-results
156156
path: '**/build/outputs/roborazzi/*_compare.png'
@@ -160,28 +160,28 @@ jobs:
160160

161161
- name: Upload lint reports (HTML)
162162
if: ${{ !cancelled() }}
163-
uses: actions/upload-artifact@v4
163+
uses: actions/upload-artifact@v5
164164
with:
165165
name: lint-reports
166166
path: '**/build/reports/lint-results-*.html'
167167

168168
- name: Upload lint reports (SARIF) for app module
169169
if: ${{ !cancelled() && hashFiles('app/**/*.sarif') != '' }}
170-
uses: github/codeql-action/upload-sarif@v3
170+
uses: github/codeql-action/upload-sarif@v4
171171
with:
172172
sarif_file: './app/'
173173
category: app
174174

175175
- name: Upload lint reports (SARIF) for app-nia-catalog module
176176
if: ${{ !cancelled() && hashFiles('app-nia-catalog/**/*.sarif') != '' }}
177-
uses: github/codeql-action/upload-sarif@v3
177+
uses: github/codeql-action/upload-sarif@v4
178178
with:
179179
sarif_file: './app-nia-catalog/'
180180
category: app-nia-catalog
181181

182182
- name: Upload lint reports (SARIF) for lint module
183183
if: ${{ !cancelled() && hashFiles('lint/**/*.sarif') != '' }}
184-
uses: github/codeql-action/upload-sarif@v3
184+
uses: github/codeql-action/upload-sarif@v4
185185
with:
186186
sarif_file: './lint/'
187187
category: lint
@@ -216,19 +216,19 @@ jobs:
216216
ls /dev/kvm
217217
218218
- name: Checkout
219-
uses: actions/checkout@v4
219+
uses: actions/checkout@v5
220220

221221
- name: Copy CI gradle.properties
222222
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
223223

224224
- name: Set up JDK 21
225-
uses: actions/setup-java@v4
225+
uses: actions/setup-java@v5
226226
with:
227227
distribution: 'zulu'
228228
java-version: 21
229229

230230
- name: Setup Gradle
231-
uses: gradle/actions/setup-gradle@v4
231+
uses: gradle/actions/setup-gradle@v5
232232
with:
233233
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
234234
build-scan-publish: true
@@ -257,15 +257,15 @@ jobs:
257257

258258
- name: Upload test reports
259259
if: ${{ !cancelled() }}
260-
uses: actions/upload-artifact@v4
260+
uses: actions/upload-artifact@v5
261261
with:
262262
name: test-reports-${{ matrix.api-level }}
263263
path: '**/build/reports/androidTests'
264264

265265
- name: Display local test coverage (only API 30)
266266
if: matrix.api-level == 30
267267
id: jacoco
268-
uses: madrapps/[email protected].1
268+
uses: madrapps/[email protected].2
269269
with:
270270
title: Combined test coverage report
271271
min-coverage-overall: 40
@@ -276,7 +276,7 @@ jobs:
276276

277277
- name: Upload local coverage reports (XML + HTML) (only API 30)
278278
if: matrix.api-level == 30
279-
uses: actions/upload-artifact@v4
279+
uses: actions/upload-artifact@v5
280280
with:
281281
name: coverage-reports
282282
if-no-files-found: error

.github/workflows/NightlyBaselineProfiles.yaml

Lines changed: 3 additions & 3 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: Enable KVM group perms
2424
run: |
@@ -31,13 +31,13 @@ jobs:
3131
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
3232

3333
- name: Set up JDK 17
34-
uses: actions/setup-java@v4
34+
uses: actions/setup-java@v5
3535
with:
3636
distribution: 'zulu'
3737
java-version: 17
3838

3939
- name: Setup Gradle
40-
uses: gradle/actions/setup-gradle@v4
40+
uses: gradle/actions/setup-gradle@v5
4141
with:
4242
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
4343
build-scan-publish: true

.github/workflows/Release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@ jobs:
2222
2323
- name: Checkout
2424

25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626

2727
- name: Copy CI gradle.properties
2828
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
2929

3030
- name: Set up JDK 17
31-
uses: actions/setup-java@v4
31+
uses: actions/setup-java@v5
3232
with:
3333
distribution: 'zulu'
3434
java-version: 17
3535

3636
- name: Setup Gradle
37-
uses: gradle/actions/setup-gradle@v4
37+
uses: gradle/actions/setup-gradle@v5
3838
with:
3939
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
4040
build-scan-publish: true

gradle/init.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
val ktlintVersion = "1.4.0"
1818

1919
initscript {
20-
val spotlessVersion = "6.25.0"
20+
val spotlessVersion = "8.0.0"
2121

2222
repositories {
2323
mavenCentral()

gradle/libs.versions.toml

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,62 @@
11
[versions]
2-
accompanist = "0.37.0"
3-
androidDesugarJdkLibs = "2.1.4"
2+
accompanist = "0.37.3"
3+
androidDesugarJdkLibs = "2.1.5"
44
# AGP and tools should be updated together
5-
androidGradlePlugin = "8.13.0"
6-
androidTools = "31.13.0"
7-
androidxActivity = "1.9.3"
8-
androidxAppCompat = "1.7.0"
9-
androidxBrowser = "1.8.0"
10-
androidxComposeBom = "2025.08.01"
11-
androidxComposeFoundation = "1.8.0-alpha07"
12-
androidxComposeMaterial3Adaptive = "1.1.0-rc01"
13-
androidxComposeRuntimeTracing = "1.7.6"
14-
androidxCore = "1.15.0"
15-
androidxCoreSplashscreen = "1.0.1"
16-
androidxDataStore = "1.1.1"
17-
androidxEspresso = "3.6.1"
18-
androidxHiltNavigationCompose = "1.2.0"
19-
androidxLifecycle = "2.8.7"
20-
androidxLintGradle = "1.0.0-alpha03"
21-
androidxMacroBenchmark = "1.3.4"
22-
androidxMetrics = "1.0.0-beta01"
23-
androidxNavigation = "2.8.5"
5+
androidGradlePlugin = "8.13.1"
6+
androidTools = "31.13.1"
7+
androidxActivity = "1.11.0"
8+
androidxAppCompat = "1.7.1"
9+
androidxBrowser = "1.9.0"
10+
androidxComposeBom = "2025.11.00"
11+
androidxComposeFoundation = "1.9.4"
12+
androidxComposeMaterial3Adaptive = "1.2.0"
13+
androidxComposeRuntimeTracing = "1.9.4"
14+
androidxCore = "1.17.0"
15+
androidxCoreSplashscreen = "1.2.0"
16+
androidxDataStore = "1.1.7"
17+
androidxEspresso = "3.7.0"
18+
androidxHiltNavigationCompose = "1.3.0"
19+
androidxLifecycle = "2.9.4"
20+
androidxLintGradle = "1.0.0-alpha05"
21+
androidxMacroBenchmark = "1.4.1"
22+
androidxMetrics = "1.0.0"
23+
androidxNavigation = "2.9.6"
2424
androidxProfileinstaller = "1.4.1"
25-
androidxTestCore = "1.7.0-rc01"
26-
androidxTestExt = "1.3.0-rc01"
27-
androidxTestRules = "1.7.0-rc01"
28-
androidxTestRunner = "1.7.0-rc01"
29-
androidxTracing = "1.3.0-alpha02"
25+
androidxTestCore = "1.7.0"
26+
androidxTestExt = "1.3.0"
27+
androidxTestRules = "1.7.0"
28+
androidxTestRunner = "1.7.0"
29+
androidxTracing = "1.3.0"
3030
androidxUiAutomator = "2.3.0"
31-
androidxWindowManager = "1.3.0"
32-
androidxWork = "2.10.0"
31+
androidxWindowManager = "1.5.0"
32+
androidxWork = "2.11.0"
3333
coil = "2.7.0"
3434
dependencyGuard = "0.5.0"
35-
firebaseBom = "33.7.0"
35+
firebaseBom = "34.5.0"
3636
firebaseCrashlyticsPlugin = "3.0.6"
3737
firebasePerfPlugin = "2.0.2"
38-
gmsPlugin = "4.4.2"
39-
googleOss = "17.1.0"
40-
googleOssPlugin = "0.10.8"
41-
hilt = "2.56"
42-
hiltExt = "1.2.0"
38+
gmsPlugin = "4.4.4"
39+
googleOss = "17.3.0"
40+
googleOssPlugin = "0.10.9"
41+
hilt = "2.57.2"
42+
hiltExt = "1.3.0"
4343
jacoco = "0.8.12"
4444
junit4 = "4.13.2"
45-
kotlin = "2.2.20"
46-
kotlinxCoroutines = "1.10.1"
47-
kotlinxDatetime = "0.6.1"
48-
kotlinxSerializationJson = "1.8.0"
49-
ksp = "2.3.1"
50-
okhttp = "4.12.0"
51-
protobuf = "4.29.2"
52-
protobufPlugin = "0.9.4"
53-
retrofit = "2.11.0"
45+
kotlin = "2.2.21"
46+
kotlinxCoroutines = "1.10.2"
47+
kotlinxDatetime = "0.7.1-0.6.x-compat"
48+
kotlinxSerializationJson = "1.9.0"
49+
ksp = "2.3.2"
50+
okhttp = "5.3.0"
51+
protobuf = "4.33.0"
52+
protobufPlugin = "0.9.5"
53+
retrofit = "3.0.0"
5454
retrofitKotlinxSerializationJson = "1.0.0"
5555
robolectric = "4.16"
5656
roborazzi = "1.51.0"
57-
room = "2.7.2"
58-
truth = "1.4.4"
59-
turbine = "1.2.0"
57+
room = "2.8.3"
58+
truth = "1.4.5"
59+
turbine = "1.2.1"
6060

6161
[bundles]
6262
androidx-compose-ui-test = ["androidx-compose-ui-test", "androidx-compose-ui-testManifest"]

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=a17ddd85a26b6a7f5ddb71ff8b05fc5104c0202c6e64782429790c933686c806
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
3+
distributionSha256Sum=df67a32e86e3276d011735facb1535f64d0d88df84fa87521e90becc2d735444
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)