From 23ccfe63d5ea7cccf81c7a1361fdb0e99ef0a5d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Feb 2026 06:59:33 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/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 ... Signed-off-by: dependabot[bot] --- .github/workflows/webassembly-reusable.yml | 2 +- .github/workflows/windows-reusable.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/webassembly-reusable.yml b/.github/workflows/webassembly-reusable.yml index 146f2eaa..f44c9b51 100644 --- a/.github/workflows/webassembly-reusable.yml +++ b/.github/workflows/webassembly-reusable.yml @@ -27,7 +27,7 @@ jobs: - name: Cache compiled GSL id: cache-gsl - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ github.workspace }}/usr key: ${{ runner.os }}-gsl-${{ hashFiles('**/webassembly-reusable.yml') }} diff --git a/.github/workflows/windows-reusable.yml b/.github/workflows/windows-reusable.yml index afc0427f..db8636e5 100644 --- a/.github/workflows/windows-reusable.yml +++ b/.github/workflows/windows-reusable.yml @@ -29,7 +29,7 @@ jobs: - name: Restore vcpkg cache id: cache-vcpkg - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: vcpkg key: vcpkg-${{ runner.os }}-${{ hashFiles('vcpkg.json') }} @@ -44,7 +44,7 @@ jobs: - name: Restore vcpkg deps cache id: cache-vcpkg-deps - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ github.workspace }}/vcpkg_cache key: vcpkg-deps-${{ runner.os }}-${{ hashFiles('vcpkg.json') }} @@ -52,7 +52,7 @@ jobs: - name: Restore vcpkg installed cache id: cache-vcpkg-installed - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ github.workspace }}/vcpkg_installed key: vcpkg-installed-${{ runner.os }}-${{ hashFiles('vcpkg.json') }}