From 01f54df3c0cfcf22c765038e6f1af8a2a7f78623 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Dec 2025 13:38:54 +0100 Subject: [PATCH] [CI] Bump actions/cache from 4 to 5 in the ci-actions group (#1886) Bumps the ci-actions group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/test-dev.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-dev.yml b/.github/workflows/test-dev.yml index ff1e99fbb..ad0666b98 100644 --- a/.github/workflows/test-dev.yml +++ b/.github/workflows/test-dev.yml @@ -74,7 +74,7 @@ jobs: - name: Restore cached AVD id: restore-avd - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ~/.config/.android/avd key: avd-${{ hashFiles('app/build.gradle.kts') }} # gradle-managed devices are defined there @@ -83,7 +83,7 @@ jobs: run: ./gradlew --build-cache --configuration-cache app:virtualCheck - name: Cache AVD - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: steps.restore-avd.outputs.cache-hit != 'true' with: path: ~/.config/.android/avd