diff --git a/.github/workflows/build_and_local_tests.yml b/.github/workflows/build_and_local_tests.yml index 1f9f5af..fad14c6 100644 --- a/.github/workflows/build_and_local_tests.yml +++ b/.github/workflows/build_and_local_tests.yml @@ -30,14 +30,14 @@ jobs: run: ./gradlew testDebug --stacktrace - name: Upload build outputs (APKs) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: build-outputs path: ./app/build/outputs - name: Upload build reports if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: build-reports path: ./app/build/reports diff --git a/.github/workflows/instrumented_tests.yml b/.github/workflows/instrumented_tests.yml index f7d3db6..866eb44 100644 --- a/.github/workflows/instrumented_tests.yml +++ b/.github/workflows/instrumented_tests.yml @@ -34,7 +34,7 @@ jobs: - name: Upload test reports if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: test-reports-${{ matrix.api-level }} path: ./app/build/reports/androidTests diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index bd9b025..dc0bb08 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,18 +1,18 @@ [versions] -androidGradlePlugin = "8.1.4" -androidxActivity = "1.8.1" +androidGradlePlugin = "8.2.0" +androidxActivity = "1.8.2" androidxComposeBom = "2023.10.01" androidxComposeCompiler = "1.5.7" androidxCore = "1.12.0" androidxHilt = "1.1.0" androidxLifecycle = "2.6.2" -androidxNavigation = "2.7.5" +androidxNavigation = "2.7.6" androidxRoom = "2.6.1" androidxTestCore = "1.5.0" androidxTestExt = "1.1.5" androidxTestRunner = "1.5.2" coroutines = "1.7.3" -hilt = "2.48.1" +hilt = "2.50" junit = "4.13.2" kotlin = "1.9.21" ksp = "1.9.21-1.0.16"