From b9fd436e5ca9f48ffe3177d5f01c3f09e18b3936 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 18:33:16 +0000 Subject: [PATCH] chore(deps): 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/buildtest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/buildtest.yml b/.github/workflows/buildtest.yml index f8866c6ab..79a3d4fe8 100644 --- a/.github/workflows/buildtest.yml +++ b/.github/workflows/buildtest.yml @@ -70,7 +70,7 @@ jobs: run: | python3 -c "from pip._internal.locations import USER_CACHE_DIR; print('dir=' + USER_CACHE_DIR)" >> $GITHUB_OUTPUT - name: Set pip cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -169,7 +169,7 @@ jobs: New-Item $dir -ItemType Directory "dir=$($dir)" >> ${Env:GITHUB_OUTPUT} - name: Set files cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.files.outputs.dir }} key: ${{ runner.os }}-64-files-${{ hashFiles('**/url.txt') }} @@ -207,7 +207,7 @@ jobs: run: | python3 -c "from pip._internal.locations import USER_CACHE_DIR; print('dir=' + USER_CACHE_DIR)" >> ${Env:GITHUB_OUTPUT} - name: Set pip cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}