From 7391139c26f2c3f9e5ccff6435da724f0d15fdaf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 00:17:05 +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/unit-tests-all.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit-tests-all.yml b/.github/workflows/unit-tests-all.yml index 87ce6f1..eebbf81 100644 --- a/.github/workflows/unit-tests-all.yml +++ b/.github/workflows/unit-tests-all.yml @@ -56,7 +56,7 @@ jobs: run: | brew install libmagic - name: "cache pip packages (windows)" - uses: "actions/cache@v5" + uses: "actions/cache@v6" if: matrix.os == 'windows-latest' with: path: ~\AppData\Local\pip @@ -64,7 +64,7 @@ jobs: restore-keys: | ${{ runner.os }}-pip- - name: "cache pip packages (all platforms)" - uses: "actions/cache@v5" + uses: "actions/cache@v6" if: matrix.os != 'windows-latest' with: path: "${{ steps.pip-cache.outputs.dir }}"