From c784f08002029687b5d4cf1f067d876883171abd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 16:22: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/ci-windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml index c478e5640..c3b2007c7 100644 --- a/.github/workflows/ci-windows.yml +++ b/.github/workflows/ci-windows.yml @@ -45,7 +45,7 @@ jobs: - name: Try to restore libraries from the cache if: github.event_name != 'release' - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 id: library-cache with: key: Conan VS${{ env.VisualStudioVersion }} ${{ env.BUILD_TYPE }} ${{ hashFiles(env.CONAN_FILE) }} @@ -60,7 +60,7 @@ jobs: - name: Save libraries to the cache if: steps.library-cache.outputs.cache-hit != 'true' && github.event_name != 'release' - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: key: ${{ steps.library-cache.outputs.cache-primary-key }} path: ${{ env.CONAN_HOME }}\p