From 37c499a92a6f2b8d2e3dd7b32245f3977ccf7e80 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 15:05:01 +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_build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI_build.yml b/.github/workflows/CI_build.yml index b7b6cb07d20e..233e07078d50 100644 --- a/.github/workflows/CI_build.yml +++ b/.github/workflows/CI_build.yml @@ -96,7 +96,7 @@ jobs: - name: (cache) Lookup Python modules if: env.PYTHON_ALLOW_CACHE == 'true' - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 id: cache-lookup with: path: ${{ env.PYTHON_DIR_CACHE }} @@ -105,7 +105,7 @@ jobs: - name: (cache) Restore Python modules if: env.PYTHON_ALLOW_CACHE == 'true' && steps.filter.outputs.result == 'XML' && steps.cache-lookup.outputs.cache-hit == 'true' - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ${{ env.PYTHON_DIR_CACHE }} key: ${{ steps.filter.outputs.python }} @@ -117,7 +117,7 @@ jobs: - name: (cache) Save Python modules if: env.PYTHON_ALLOW_CACHE == 'true' && steps.cache-lookup.outputs.cache-hit != 'true' && github.event_name == 'push' - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: ${{ env.PYTHON_DIR_CACHE }} key: ${{ steps.filter.outputs.python }} @@ -205,7 +205,7 @@ jobs: - name: (cache) Restore Python modules for Win32 / Debug if: matrix.build_platform == 'Win32' && matrix.build_configuration == 'Debug' && env.PYTHON_ALLOW_CACHE == 'true' && contains(needs.before_build.outputs.title, '[force nopythoncache]') != true - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ${{ env.PYTHON_DIR_CACHE }} key: ${{ needs.before_build.outputs.python }}