From 811c22dae2436efdc8a65e1ff696d2c29242a683 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 19:53:33 +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/default.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index b58c6f4..6ec84a7 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -66,7 +66,7 @@ jobs: - name: cache vcpkg id: cache-vcpkg-restore - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ${{ env.VCPKG_CACHE_DIR }} key: vcpkg-${{ matrix.runner }}-openssl-${{ hashFiles('cpp/vcpkg_commit.txt', 'cpp/vcpkg-alts/**') }} @@ -171,7 +171,7 @@ jobs: - name: Post cache vcpkg if: steps.cache-vcpkg-restore.outputs.cache-hit != 'true' - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: key: ${{ steps.cache-vcpkg-restore.outputs.cache-primary-key }} path: ${{ env.VCPKG_CACHE_DIR }}