Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/Build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,14 +100,14 @@ jobs:
run: ./gradlew :app:assemble

- name: Upload build outputs (APKs)
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: APKs
path: '**/build/outputs/apk/**/*.apk'

- name: Upload JVM local results (XML)
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: local-test-results
path: '**/build/test-results/test*UnitTest/**.xml'
Expand All @@ -124,7 +124,7 @@ jobs:

- name: Upload lint reports (HTML)
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: lint-reports
path: '**/build/reports/lint-results-*.html'
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:

- name: Upload test reports
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: test-reports-${{ matrix.api-level }}
path: '**/build/reports/androidTests'
Expand All @@ -214,7 +214,7 @@ jobs:

- name: Upload local coverage reports (XML + HTML) (only API 30)
if: matrix.api-level == 30
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-reports
if-no-files-found: error
Expand Down
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ androidxActivity = "1.12.4"
androidxAppCompat = "1.7.1"
androidxBrowser = "1.9.0"
androidxComposeBom = "2026.02.00"
androidxComposeRuntimeTracing = "1.10.3"
androidxComposeRuntimeTracing = "1.10.4"
androidxCore = "1.17.0"
androidxCoreSplashscreen = "1.2.0"
androidxDataStore = "1.2.0"
Expand All @@ -31,13 +31,13 @@ androidxWork = "2.11.1"
coil = "2.7.0"
dependencyGuard = "0.5.0"
sortDependencies = "0.16"
firebaseBom = "34.9.0"
firebaseBom = "34.10.0"
firebaseCrashlyticsPlugin = "3.0.2"
firebasePerfPlugin = "1.4.2"
gmsPlugin = "4.4.2"
googleOss = "17.4.0"
googleOssPlugin = "0.10.10"
hilt = "2.59.1"
hilt = "2.59.2"
hiltExt = "1.3.0"
jacoco = "0.8.12"
junit4 = "4.13.2"
Expand All @@ -49,7 +49,7 @@ kotlinxSerializationJson = "1.10.0"
ksp = "2.3.6"
moduleGraph = "2.7.1"
okhttp = "5.3.2"
protobuf = "4.33.5"
protobuf = "4.34.0"
protobufPlugin = "0.9.4"
retrofit = "3.0.0"
retrofitKotlinxSerializationJson = "1.0.0"
Expand All @@ -60,7 +60,7 @@ secrets = "2.0.1"
truth = "1.4.5"
turbine = "1.2.1"
material3Android = "1.4.0"
kotest = "6.1.3"
kotest = "6.1.4"
konsist = "0.17.3"
detekt = "1.23.8"
koinBom = "4.1.1"
Expand Down
Loading