Skip to content

Commit 8b79195

Browse files
fix(deps): update all dependencies
1 parent f9fd295 commit 8b79195

File tree

7 files changed

+62
-62
lines changed

7 files changed

+62
-62
lines changed

.github/workflows/CompareScreenshot.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ jobs:
3232

3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636

3737
- name: Set up JDK 17
38-
uses: actions/setup-java@v4
38+
uses: actions/setup-java@v5
3939
with:
4040
distribution: temurin
4141
java-version: 17
@@ -46,7 +46,7 @@ jobs:
4646
gradle-version: wrapper
4747

4848

49-
- uses: dawidd6/action-download-artifact@v9
49+
- uses: dawidd6/action-download-artifact@v11
5050
continue-on-error: true
5151
with:
5252
name: screenshot
@@ -58,23 +58,23 @@ jobs:
5858
run: |
5959
./gradlew compareRoborazziDebug --stacktrace -Pscreenshot
6060
61-
- uses: actions/upload-artifact@v4
61+
- uses: actions/upload-artifact@v5
6262
if: ${{ always() }}
6363
with:
6464
name: screenshot-diff
6565
path: |
6666
**/build/outputs/roborazzi
6767
retention-days: 30
6868

69-
- uses: actions/upload-artifact@v4
69+
- uses: actions/upload-artifact@v5
7070
if: ${{ always() }}
7171
with:
7272
name: screenshot-diff-reports
7373
path: |
7474
**/build/reports
7575
retention-days: 30
7676

77-
- uses: actions/upload-artifact@v4
77+
- uses: actions/upload-artifact@v5
7878
if: ${{ always() }}
7979
with:
8080
name: screenshot-diff-test-results
@@ -87,7 +87,7 @@ jobs:
8787
run: |
8888
mkdir -p ./pr
8989
echo ${{ github.event.number }} > ./pr/NR
90-
- uses: actions/upload-artifact@v4
90+
- uses: actions/upload-artifact@v5
9191
with:
9292
name: pr
9393
path: pr/

.github/workflows/CompareScreenshotComment.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030

3131
steps:
32-
- uses: dawidd6/action-download-artifact@v9
32+
- uses: dawidd6/action-download-artifact@v11
3333
with:
3434
name: pr
3535
run_id: ${{ github.event.workflow_run.id }}
@@ -40,7 +40,7 @@ jobs:
4040
echo "pull_request_number=$(cat NR)" >> "$GITHUB_OUTPUT"
4141
- name: main checkout
4242
id: checkout-main
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v5
4444
with:
4545
ref: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.event.pull_request.base.ref || github.event.repository.default_branch }}
4646
- id: switch-companion-branch
@@ -51,7 +51,7 @@ jobs:
5151
git branch -D "$BRANCH_NAME" || true
5252
git checkout --orphan "$BRANCH_NAME"
5353
git rm -rf .
54-
- uses: dawidd6/action-download-artifact@v9
54+
- uses: dawidd6/action-download-artifact@v11
5555
with:
5656
run_id: ${{ github.event.workflow_run.id }}
5757
name: screenshot-diff
@@ -118,7 +118,7 @@ jobs:
118118
done
119119
echo "${delimiter}" >> "$GITHUB_OUTPUT"
120120
- name: Find Comment
121-
uses: peter-evans/find-comment@v3
121+
uses: peter-evans/find-comment@v4
122122
id: fc
123123
if: steps.generate-diff-reports.outputs.reports != ''
124124
with:
@@ -127,7 +127,7 @@ jobs:
127127
body-includes: Snapshot diff report
128128

129129
- name: Add or update comment on PR
130-
uses: peter-evans/create-or-update-comment@v4
130+
uses: peter-evans/create-or-update-comment@v5
131131
if: steps.generate-diff-reports.outputs.reports != ''
132132
with:
133133
comment-id: ${{ steps.fc.outputs.comment-id }}

.github/workflows/StoreScreenshot.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ jobs:
3232

3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636

3737
- name: Set up JDK 17
38-
uses: actions/setup-java@v4
38+
uses: actions/setup-java@v5
3939
with:
4040
distribution: temurin
4141
java-version: 17
@@ -52,23 +52,23 @@ jobs:
5252
# Use --rerun-tasks to disable cache for test task
5353
./gradlew recordRoborazziDebug --stacktrace --rerun-tasks -Pscreenshot
5454
55-
- uses: actions/upload-artifact@v4
55+
- uses: actions/upload-artifact@v5
5656
if: ${{ always() }}
5757
with:
5858
name: screenshot
5959
path: |
6060
**/build/outputs/roborazzi
6161
retention-days: 30
6262

63-
- uses: actions/upload-artifact@v4
63+
- uses: actions/upload-artifact@v5
6464
if: ${{ always() }}
6565
with:
6666
name: screenshot-reports
6767
path: |
6868
**/build/reports
6969
retention-days: 30
7070

71-
- uses: actions/upload-artifact@v4
71+
- uses: actions/upload-artifact@v5
7272
if: ${{ always() }}
7373
with:
7474
name: screenshot-test-results

.github/workflows/build.yml

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

2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
with:
3030
fetch-depth: 0
3131

3232
- name: Validate Gradle Wrapper
3333
uses: gradle/wrapper-validation-action@v3
3434

3535
- name: set up JDK 17
36-
uses: actions/setup-java@v4
36+
uses: actions/setup-java@v5
3737
with:
3838
java-version: '17'
3939
distribution: 'temurin'
@@ -64,15 +64,15 @@ jobs:
6464
push: true
6565

6666
- name: Upload build outputs (APKs)
67-
uses: actions/upload-artifact@v4
67+
uses: actions/upload-artifact@v5
6868
with:
6969
name: build-outputs
7070
path: |
7171
**/build/outputs/*
7272
7373
- name: Upload build reports
7474
if: always()
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@v5
7676
with:
7777
name: build-reports
7878
path: ./**/build/reports

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
contents: write
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
with:
2222
fetch-depth: 0
2323

2424
- name: Validate Gradle Wrapper
2525
uses: gradle/wrapper-validation-action@v3
2626

2727
- name: set up JDK 17
28-
uses: actions/setup-java@v4
28+
uses: actions/setup-java@v5
2929
with:
3030
java-version: '17'
3131
distribution: 'temurin'
@@ -97,7 +97,7 @@ jobs:
9797
run: ./gradlew assembleRelease --stacktrace
9898

9999
- name: Upload release APK
100-
uses: actions/upload-artifact@v4
100+
uses: actions/upload-artifact@v5
101101
with:
102102
name: app-release
103103
path: ./app/build/outputs/apk/release/app-release.apk

gradle/libs.versions.toml

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -2,59 +2,59 @@
22
minSdk = "26"
33
targetSdk = "36"
44
compileSdk = "36"
5-
agp = "8.9.2"
5+
agp = "8.13.0"
66
kotlin = "2.1.20"
77
ksp = "2.1.20-1.0.32"
8-
ktlint = "12.2.0"
8+
ktlint = "13.1.0"
99
kotlinx-serialization = "1.8.1"
10-
hilt = "2.56.2"
11-
hilt-androidx = "1.2.0"
12-
core-ktx = "1.16.0"
10+
hilt = "2.57.2"
11+
hilt-androidx = "1.3.0"
12+
core-ktx = "1.17.0"
1313
splashscreen = "1.0.1"
1414
junit = "4.13.2"
15-
robolectric = "4.14.1"
16-
roborazzi = "1.43.1"
17-
okio = "3.11.0"
18-
mockk = "1.14.2"
15+
robolectric = "4.16"
16+
roborazzi = "1.50.0"
17+
okio = "3.16.2"
18+
mockk = "1.14.6"
1919
assertk = "0.28.1"
20-
turbine = "1.2.0"
21-
androidx-test-ext-junit = "1.2.1"
22-
androidx-test-runner = "1.6.2"
23-
androidx-test-core = "1.6.1"
20+
turbine = "1.2.1"
21+
androidx-test-ext-junit = "1.3.0"
22+
androidx-test-runner = "1.7.0"
23+
androidx-test-core = "1.7.0"
2424
androidx-annotations = "1.9.1"
25-
espresso-core = "3.6.1"
26-
lifecycle-runtime = "2.9.0"
27-
activity-compose = "1.10.1"
28-
compose-bom = "2025.05.00"
29-
compose-htmlconverter = "1.0.4"
25+
espresso-core = "3.7.0"
26+
lifecycle-runtime = "2.9.4"
27+
activity-compose = "1.11.0"
28+
compose-bom = "2025.10.01"
29+
compose-htmlconverter = "1.1.0"
3030
kmpalette = "3.1.0"
3131
lyricist = "1.7.0"
32-
navigation = "2.9.0"
33-
molecule = "2.1.0"
34-
media3 = "1.6.1"
32+
navigation = "2.9.5"
33+
molecule = "2.2.0"
34+
media3 = "1.8.0"
3535
coroutines = "1.10.1"
36-
workmanager = "2.10.1"
37-
coil = "3.1.0"
38-
ktor = "3.1.3"
39-
result = "2.0.1"
40-
xmlutil = "0.91.0"
41-
kermit = "2.0.5"
36+
workmanager = "2.11.0"
37+
coil = "3.3.0"
38+
ktor = "3.3.1"
39+
result = "2.1.0"
40+
xmlutil = "0.91.3"
41+
kermit = "2.0.8"
4242
# TODO: There is a regression in sqldelight 2.0.2 that causes sqldelight gradle tasks to fail on windows
4343
# For more info, See https://github.com/sqldelight/sqldelight/issues/5129, https://github.com/sqldelight/sqldelight/issues/5204,
4444
# https://slack-chats.kotlinlang.org/t/23461955/hello-i-started-using-the-sqldelight-libraries-in-my-kmp-pro, https://github.com/sqldelight/sqldelight/issues/5312
45-
sqldelight = "2.0.1"
45+
sqldelight = "2.1.0"
4646
sqlite-jdbc = "3.18.0" # sqlite version used in Android API level 26 (our minSdk)
47-
google-services = "4.4.2"
48-
firebase-bom = "33.13.0"
49-
crashlytics = "3.0.3"
47+
google-services = "4.4.4"
48+
firebase-bom = "34.4.0"
49+
crashlytics = "3.0.6"
5050
leakcanary = "3.0-alpha-8"
51-
datastore = "1.1.1"
52-
aboutlibraries = "12.1.2"
53-
appversioning = "1.4.0"
51+
datastore = "1.1.7"
52+
aboutlibraries = "13.1.0"
53+
appversioning = "1.5.0"
5454
gpp = "3.12.1"
5555
uiautomator = "2.3.0"
56-
benchmarkMacroJunit4 = "1.3.4"
57-
baselineprofile = "1.3.4"
56+
benchmarkMacroJunit4 = "1.4.1"
57+
baselineprofile = "1.4.1"
5858
profileinstaller = "1.4.1"
5959

6060
[libraries]

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=61ad310d3c7d3e5da131b76bbf22b5a4c0786e9d892dae8c1658d4b484de3caa
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
3+
distributionSha256Sum=a17ddd85a26b6a7f5ddb71ff8b05fc5104c0202c6e64782429790c933686c806
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)