Skip to content
This repository was archived by the owner on Oct 25, 2025. It is now read-only.

Commit e5df449

Browse files
Update all dependencies
1 parent 9a7ca13 commit e5df449

File tree

6 files changed

+323
-230
lines changed

6 files changed

+323
-230
lines changed

.github/workflows/blueprints.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ jobs:
2121

2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v4
2525

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

2929
- name: Set up JDK 11
30-
uses: actions/setup-java@v1
30+
uses: actions/setup-java@v4
3131
with:
3232
java-version: 11
3333

34-
- uses: actions/cache@v2
34+
- uses: actions/cache@v4
3535
with:
3636
path: |
3737
~/.gradle/caches/modules-*
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Upload build reports
4646
if: always()
47-
uses: actions/upload-artifact@v2
47+
uses: actions/upload-artifact@v4
4848
with:
4949
name: build-reports
5050
path: app/build/reports/
@@ -59,13 +59,13 @@ jobs:
5959

6060
steps:
6161
- name: Checkout
62-
uses: actions/checkout@v2
62+
uses: actions/checkout@v4
6363

6464
- name: Copy CI gradle.properties
6565
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
6666

6767
- name: Set up JDK 11
68-
uses: actions/setup-java@v1
68+
uses: actions/setup-java@v4
6969
with:
7070
java-version: 11
7171

@@ -79,7 +79,7 @@ jobs:
7979

8080
- name: Upload test reports
8181
if: always()
82-
uses: actions/upload-artifact@v2
82+
uses: actions/upload-artifact@v4
8383
with:
8484
name: test-reports
8585
path: app/build/reports/

build.gradle

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
buildscript {
22
ext.kotlinVersion = '1.5.31'
3-
ext.navigationVersion = '2.3.5'
3+
ext.navigationVersion = '2.8.4'
44
repositories {
55
google()
66
mavenCentral()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:7.0.3'
9+
classpath 'com.android.tools.build:gradle:8.7.3'
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
1111
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
1212

@@ -31,29 +31,29 @@ ext {
3131

3232
// App dependencies
3333
androidXVersion = '1.0.0'
34-
androidXTestCoreVersion = '1.4.0'
35-
androidXTestExtKotlinRunnerVersion = '1.1.3'
34+
androidXTestCoreVersion = '1.6.1'
35+
androidXTestExtKotlinRunnerVersion = '1.2.1'
3636
androidXTestRulesVersion = '1.2.0'
37-
androidXAnnotations = '1.3.0'
38-
appCompatVersion = '1.4.0'
39-
archLifecycleVersion = '2.4.0'
40-
archTestingVersion = '2.1.0'
37+
androidXAnnotations = '1.9.1'
38+
appCompatVersion = '1.7.0'
39+
archLifecycleVersion = '2.8.7'
40+
archTestingVersion = '2.2.0'
4141
coroutinesVersion = '1.5.2'
4242
cardVersion = '1.0.0'
4343
coroutinesVersion = '1.5.0'
44-
dexMakerVersion = '2.28.1'
45-
espressoVersion = '3.4.0'
46-
fragmentVersion = '1.4.0'
44+
dexMakerVersion = '2.28.4'
45+
espressoVersion = '3.6.1'
46+
fragmentVersion = '1.8.5'
4747
hamcrestVersion = '1.3'
4848
junitVersion = '4.13.2'
49-
materialVersion = '1.4.0'
50-
mockitoVersion = '2.8.9'
49+
materialVersion = '1.12.0'
50+
mockitoVersion = '5.14.2'
5151
multiDexVersion = '2.0.1'
52-
recyclerViewVersion = '1.2.1'
53-
robolectricVersion = '4.5.1'
54-
roomVersion = '2.3.0'
52+
recyclerViewVersion = '1.3.2'
53+
robolectricVersion = '4.14.1'
54+
roomVersion = '2.6.1'
5555
rulesVersion = '1.0.1'
5656
swipeRefreshLayoutVersion = '1.1.0'
57-
timberVersion = '4.7.1'
57+
timberVersion = '5.0.1'
5858
truthVersion = '1.1.2'
5959
}

gradle/wrapper/gradle-wrapper.jar

-6.17 KB
Binary file not shown.
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
#Mon Jun 14 12:47:31 UTC 2021
21
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
42
distributionPath=wrapper/dists
5-
zipStorePath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)