Skip to content

Commit 55ada7a

Browse files
Update all dependencies
1 parent 55970c2 commit 55ada7a

File tree

6 files changed

+68
-68
lines changed

6 files changed

+68
-68
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@v6
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'
@@ -94,7 +94,7 @@ jobs:
9494
9595
- name: Push new graphs if available
9696
if: steps.graphs_verify.outcome == 'failure' && github.event_name == 'pull_request'
97-
uses: stefanzweifel/git-auto-commit-action@v5
97+
uses: stefanzweifel/git-auto-commit-action@v7
9898
with:
9999
file_pattern: '**/README.md'
100100
disable_globbing: true
@@ -122,7 +122,7 @@ jobs:
122122
./gradlew recordRoborazziDemoDebug
123123
124124
- name: Push new screenshots if available
125-
uses: stefanzweifel/git-auto-commit-action@v5
125+
uses: stefanzweifel/git-auto-commit-action@v7
126126
if: steps.screenshotsrecord.outcome == 'success'
127127
with:
128128
file_pattern: '*/*.png'
@@ -137,21 +137,21 @@ jobs:
137137
run: ./gradlew :app:assemble -PminifyWithR8=false
138138

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

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

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

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

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

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

183183
- name: Upload lint reports (SARIF) for lint module
184184
if: ${{ !cancelled() && hashFiles('lint/**/*.sarif') != '' }}
185-
uses: github/codeql-action/upload-sarif@v3
185+
uses: github/codeql-action/upload-sarif@v4
186186
with:
187187
sarif_file: './lint/'
188188
category: lint
@@ -217,19 +217,19 @@ jobs:
217217
ls /dev/kvm
218218
219219
- name: Checkout
220-
uses: actions/checkout@v4
220+
uses: actions/checkout@v6
221221

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

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

231231
- name: Setup Gradle
232-
uses: gradle/actions/setup-gradle@v4
232+
uses: gradle/actions/setup-gradle@v5
233233
with:
234234
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
235235
build-scan-publish: true
@@ -258,15 +258,15 @@ jobs:
258258

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

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

278278
- name: Upload local coverage reports (XML + HTML) (only API 30)
279279
if: matrix.api-level == 30
280-
uses: actions/upload-artifact@v4
280+
uses: actions/upload-artifact@v5
281281
with:
282282
name: coverage-reports
283283
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@v6
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@v6
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.1.0"
2121

2222
repositories {
2323
mavenCentral()

gradle/libs.versions.toml

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,67 @@
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
55
androidGradlePlugin = "8.13.1"
66
androidTools = "31.13.1"
7-
androidxActivity = "1.9.3"
8-
androidxAppCompat = "1.7.0"
9-
androidxBrowser = "1.8.0"
10-
androidxComposeBom = "2025.09.01"
11-
androidxComposeFoundation = "1.8.0-alpha07"
12-
androidxComposeMaterial3Adaptive = "1.1.0-rc01"
13-
androidxComposeMaterial3AdaptiveNavigation3 = "1.3.0-alpha04"
14-
androidxComposeRuntimeTracing = "1.7.6"
15-
androidxCore = "1.15.0"
16-
androidxCoreSplashscreen = "1.0.1"
7+
androidxActivity = "1.12.1"
8+
androidxAppCompat = "1.7.1"
9+
androidxBrowser = "1.9.0"
10+
androidxComposeBom = "2025.12.00"
11+
androidxComposeFoundation = "1.10.0"
12+
androidxComposeMaterial3Adaptive = "1.2.0"
13+
androidxComposeMaterial3AdaptiveNavigation3 = "1.3.0-alpha05"
14+
androidxComposeRuntimeTracing = "1.10.0"
15+
androidxCore = "1.17.0"
16+
androidxCoreSplashscreen = "1.2.0"
1717
androidxDataStore = "1.2.0"
18-
androidxEspresso = "3.6.1"
19-
androidxHiltLifecycleViewModelCompose = "1.3.0-alpha02"
18+
androidxEspresso = "3.7.0"
19+
androidxHiltLifecycleViewModelCompose = "1.3.0"
2020
androidxLifecycle = "2.10.0"
21-
androidxLintGradle = "1.0.0-alpha03"
21+
androidxLintGradle = "1.0.0-alpha05"
2222
androidxLifecycleViewModelNavigation3 = "2.10.0"
2323
androidxMacroBenchmark = "1.4.1"
24-
androidxMetrics = "1.0.0-beta01"
25-
androidxNavigation = "2.8.5"
24+
androidxMetrics = "1.0.0"
25+
androidxNavigation = "2.9.6"
2626
androidxNavigation3 = "1.0.0"
2727
androidxProfileinstaller = "1.4.1"
28-
androidxSavedStateCompose = "1.3.1"
29-
androidxTestCore = "1.7.0-rc01"
30-
androidxTestExt = "1.3.0-rc01"
31-
androidxTestRules = "1.7.0-rc01"
32-
androidxTestRunner = "1.7.0-rc01"
33-
androidxTracing = "1.3.0-alpha02"
28+
androidxSavedStateCompose = "1.4.0"
29+
androidxTestCore = "1.7.0"
30+
androidxTestExt = "1.3.0"
31+
androidxTestRules = "1.7.0"
32+
androidxTestRunner = "1.7.0"
33+
androidxTracing = "1.3.0"
3434
androidxUiAutomator = "2.3.0"
35-
androidxWindowManager = "1.3.0"
36-
androidxWork = "2.10.0"
35+
androidxWindowManager = "1.5.1"
36+
androidxWork = "2.11.0"
3737
coil = "2.7.0"
3838
dependencyGuard = "0.5.0"
39-
firebaseBom = "33.7.0"
39+
firebaseBom = "34.6.0"
4040
firebaseCrashlyticsPlugin = "3.0.6"
4141
firebasePerfPlugin = "2.0.2"
4242
gmsPlugin = "4.4.4"
43-
googleOss = "17.1.0"
43+
googleOss = "17.3.0"
4444
googleOssPlugin = "0.10.9"
4545
hilt = "2.57.2"
46-
hiltExt = "1.2.0"
46+
hiltExt = "1.3.0"
4747
jacoco = "0.8.12"
4848
junit4 = "4.13.2"
4949
kotlin = "2.2.21"
50-
kotlinxCoroutines = "1.10.1"
51-
kotlinxDatetime = "0.6.1"
52-
kotlinxSerializationJson = "1.8.0"
53-
ksp = "2.3.1"
54-
okhttp = "4.12.0"
55-
protobuf = "4.29.2"
50+
kotlinxCoroutines = "1.10.2"
51+
kotlinxDatetime = "0.7.1-0.6.x-compat"
52+
kotlinxSerializationJson = "1.9.0"
53+
ksp = "2.3.3"
54+
okhttp = "5.3.2"
55+
protobuf = "4.33.2"
5656
protobufPlugin = "0.9.5"
57-
retrofit = "2.11.0"
57+
retrofit = "3.0.0"
5858
retrofitKotlinxSerializationJson = "1.0.0"
5959
robolectric = "4.16"
60-
roborazzi = "1.51.0"
61-
room = "2.8.3"
62-
truth = "1.4.4"
63-
turbine = "1.2.0"
64-
uiTestJunit4 = "1.9.0-rc01"
60+
roborazzi = "1.52.0"
61+
room = "2.8.4"
62+
truth = "1.4.5"
63+
turbine = "1.2.1"
64+
uiTestJunit4 = "1.10.0"
6565

6666
[bundles]
6767
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=72f44c9f8ebcb1af43838f45ee5c4aa9c5444898b3468ab3f4af7b6076c5bc3f
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)