Skip to content

Commit e6cfd91

Browse files
committed
chore(deps): upgrade dependencies
1 parent b8cb71a commit e6cfd91

File tree

5 files changed

+32
-32
lines changed

5 files changed

+32
-32
lines changed

.github/workflows/develop_ci.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
outputs:
2222
any: ${{ steps.changed-files.outputs.any_changed }}
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v3.5.2
2525
with:
26-
submodules: 'recursive'
26+
submodules: "recursive"
2727
fetch-depth: 0
2828
- name: Get changed files
2929
id: changed-files
30-
uses: tj-actions/changed-files@v35.7.8
30+
uses: tj-actions/changed-files@v35.9.2
3131
with:
3232
files: |
3333
.github/workflows/develop_ci.yml
@@ -37,12 +37,12 @@ jobs:
3737
**/*.xml
3838
3939
check-codestyle:
40-
needs: [ file-changes ]
40+
needs: [file-changes]
4141
runs-on: ubuntu-latest
4242
if: needs.file-changes.outputs.any == 'true'
4343
steps:
4444
- name: Checkout repository
45-
uses: actions/[email protected].0
45+
uses: actions/[email protected].2
4646
with:
4747
fetch-depth: 0
4848

@@ -60,15 +60,15 @@ jobs:
6060
gradle-home-cache-cleanup: true
6161

6262
unit-tests:
63-
needs: [ check-codestyle ]
63+
needs: [check-codestyle]
6464
strategy:
6565
matrix:
66-
os: [ ubuntu-latest ]
66+
os: [ubuntu-latest]
6767
runs-on: ${{ matrix.os }}
6868
if: needs.file-changes.outputs.any == 'true'
6969
steps:
7070
- name: Checkout repository
71-
uses: actions/[email protected].0
71+
uses: actions/[email protected].2
7272
with:
7373
fetch-depth: 0
7474

@@ -93,15 +93,15 @@ jobs:
9393
path: app/build/reports/tests/
9494

9595
build-apks:
96-
needs: [ check-codestyle ]
96+
needs: [check-codestyle]
9797
strategy:
9898
matrix:
99-
os: [ ubuntu-latest, macos-latest ]
99+
os: [ubuntu-latest, macos-latest]
100100
runs-on: ${{ matrix.os }}
101101
if: needs.file-changes.outputs.any == 'true'
102102
steps:
103103
- name: Checkout repository
104-
uses: actions/[email protected].0
104+
uses: actions/[email protected].2
105105
with:
106106
fetch-depth: 0
107107

.github/workflows/pr_ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
outputs:
1414
any: ${{ steps.changed-files.outputs.any_changed }}
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v3.5.2
1717
with:
1818
submodules: 'recursive'
1919
fetch-depth: 0
2020

2121
- name: Get changed files
2222
id: changed-files
23-
uses: tj-actions/changed-files@v35.7.8
23+
uses: tj-actions/changed-files@v35.9.2
2424
with:
2525
files: |
2626
.github/workflows/pr_ci.yml
@@ -41,7 +41,7 @@ jobs:
4141
if: needs.file-changes.outputs.any == 'true'
4242
steps:
4343
- name: Checkout repository
44-
uses: actions/[email protected].0
44+
uses: actions/[email protected].2
4545
with:
4646
fetch-depth: 0
4747
- name: Set up JDK
@@ -63,7 +63,7 @@ jobs:
6363
if: needs.file-changes.outputs.any == 'true'
6464
steps:
6565
- name: Checkout repository
66-
uses: actions/[email protected].0
66+
uses: actions/[email protected].2
6767
with:
6868
fetch-depth: 0
6969
- name: Set up JDK
@@ -88,7 +88,7 @@ jobs:
8888
if: needs.file-changes.outputs.any == 'true'
8989
steps:
9090
- name: Checkout repository
91-
uses: actions/[email protected].0
91+
uses: actions/[email protected].2
9292
with:
9393
fetch-depth: 0
9494
- name: Set up JDK

gradle/libs.versions.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
[versions]
22
axCore = "1.10.0"
33
axAppcompat = "1.6.1"
4-
axActivity = "1.7.0"
4+
axActivity = "1.7.1"
55
axConstraintlayout = "2.1.4"
66
axDatastore = "1.0.0"
77
axNavigation = "2.5.3"
88
axTest = "1.4.0"
99
axWork = "2.8.1"
1010
coroutines = "1.6.4"
11-
googleMaterial = "1.8.0"
12-
agp = "8.1.0-alpha11"
11+
googleMaterial = "1.9.0"
12+
agp = "8.1.0-beta01"
1313
espresso = "3.5.1"
1414
hilt = "2.45"
1515
axHilt = "1.0.0"
16-
ktor = "2.2.4"
16+
ktor = "2.3.0"
1717
lifecycle = "2.6.1"
1818
kotlin = "1.8.20"
19-
binary_compat = "0.13.0"
20-
mockito = "5.3.0"
19+
binary_compat = "0.13.1"
20+
mockito = "5.3.1"
2121
room = "2.5.1"
2222
spotless = "6.18.0"
2323
uiautomator = "2.2.0"
@@ -27,15 +27,15 @@ serialization = "1.5.0"
2727
androidx-core-ktx = { module = "androidx.core:core-ktx", version.ref = "axCore" }
2828
androidx-activity = { module = "androidx.activity:activity-ktx", version.ref = "axActivity" }
2929
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "axAppcompat" }
30-
androidx-benchmark-junit = "androidx.benchmark:benchmark-macro-junit4:1.2.0-alpha13"
30+
androidx-benchmark-junit = "androidx.benchmark:benchmark-macro-junit4:1.2.0-alpha14"
3131
androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "axConstraintlayout" }
3232
androidx-datastore = { module = "androidx.datastore:datastore-preferences", version.ref = "axDatastore" }
3333
androidx-swiperefreshlayout = "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
3434
androidx-lifecycle-ktx = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version.ref = "lifecycle" }
3535
androidx-lifecycle-viewmodel = { module = "androidx.lifecycle:lifecycle-viewmodel-ktx", version.ref = "lifecycle" }
3636
androidx-navigation-fragment-ktx = { module = "androidx.navigation:navigation-fragment-ktx", version.ref = "axNavigation" }
3737
androidx-navigation-ui-ktx = { module = "androidx.navigation:navigation-ui-ktx", version.ref = "axNavigation" }
38-
androidx-profileinstaller = "androidx.profileinstaller:profileinstaller:1.3.0"
38+
androidx-profileinstaller = "androidx.profileinstaller:profileinstaller:1.3.1"
3939
androidx-recyclerview-selection = "androidx.recyclerview:recyclerview-selection:1.2.0-alpha01"
4040
androidx-room-runtime = { module = "androidx.room:room-runtime", version.ref = "room" }
4141
androidx-room-compiler = { module = "androidx.room:room-compiler", version.ref = "room" }
@@ -55,11 +55,11 @@ coroutines-jdk8 = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-jdk8", ve
5555
kotlin-coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "coroutines" }
5656
coroutines-turbine = { module = "app.cash.turbine:turbine", version = "0.12.3" }
5757

58-
compose-activity = "androidx.activity:activity-compose:1.7.0"
59-
compose-compiler = "androidx.compose.compiler:compiler:1.4.5"
60-
compose-foundation = "androidx.compose.foundation:foundation:1.4.1"
58+
compose-activity = "androidx.activity:activity-compose:1.7.1"
59+
compose-compiler = "androidx.compose.compiler:compiler:1.4.6"
60+
compose-foundation = "androidx.compose.foundation:foundation:1.4.3"
6161
compose-material3 = "androidx.compose.material3:material3:1.0.1"
62-
compose-material-icons = "org.jetbrains.compose.material:material-icons-extended-desktop:1.3.1"
62+
compose-material-icons = "org.jetbrains.compose.material:material-icons-extended-desktop:1.4.0"
6363
compose-theme-adapter = "com.google.accompanist:accompanist-themeadapter-material3:0.30.1"
6464

6565
google-material = { module = "com.google.android.material:material", version.ref = "googleMaterial" }
@@ -101,4 +101,4 @@ sentry = "io.sentry.android.gradle:3.5.0"
101101

102102
[bundles]
103103
compose = ["compose-theme-adapter", "compose-activity", "compose-foundation", "compose-material3"]
104-
testing = ["junit", "mockito-core", "mockito-kotlin", "kotlin-coroutines-test"]
104+
testing = ["junit", "mockito-core", "mockito-kotlin", "kotlin-coroutines-test"]
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=a62c5f99585dd9e1f95dab7b9415a0e698fa9dd1e6c38537faa81ac078f4d23e
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip
3+
distributionSha256Sum=e111cb9948407e26351227dabce49822fb88c37ee72f1d1582a69c68af2e702f
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
55
networkTimeout=10000
66
zipStoreBase=GRADLE_USER_HOME
77
zipStorePath=wrapper/dists

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencyResolutionManagement {
1818
}
1919
}
2020

21-
plugins { id("com.gradle.enterprise") version "3.13" }
21+
plugins { id("com.gradle.enterprise") version "3.13.1" }
2222

2323
gradleEnterprise {
2424
buildScan {

0 commit comments

Comments
 (0)