From 917b2ab65379382083a77253fed8b460060224e4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 21:43:35 +0000 Subject: [PATCH] Bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build_and_test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index b1e9687ac1..21bccbe50f 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -26,7 +26,7 @@ jobs: - uses: actions/checkout@v6 - name: Restore gradle cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ~/.gradle/caches @@ -46,7 +46,7 @@ jobs: run: ./gradlew assemble${{ matrix.variant }}${{ matrix.build_type }} ${{ matrix.extra_build_command_options }} --stacktrace - name: Save gradle cache - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 # Only save cache on dev if: github.ref_name == 'dev' with: @@ -75,7 +75,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: Restore Gradle cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ~/.gradle/caches @@ -95,7 +95,7 @@ jobs: run: ./gradlew testPlayDebugUnitTest --stacktrace - name: Save gradle cache - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 # Only save cache on dev if: github.ref_name == 'dev' with: