From 3f4a1a99745c3c437a719576b1007f5e44dfa933 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 27 Jun 2026 03:42:26 +0000 Subject: [PATCH] build(deps): bump actions/cache from 5 to 6 in the github-official group Bumps the github-official group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `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 dependency-group: github-official ... Signed-off-by: dependabot[bot] --- .github/workflows/build-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 8ba66e1..f375165 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -41,7 +41,7 @@ jobs: - name: Restore TargetFramework.json cache id: restore-tfm-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ${{ runner.temp }}/TargetFramework.json # Unique key so we never get an exact hit; restore-keys picks up the latest saved entry @@ -64,7 +64,7 @@ jobs: - name: Save TargetFramework.json cache if: steps.restore-tfm-cache.outputs.cache-matched-key != format('tfm-json-{0}', steps.hash-tfm.outputs.hash) - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: ${{ runner.temp }}/TargetFramework.json key: tfm-json-${{ steps.hash-tfm.outputs.hash }}