Skip to content

Commit 4e34dc1

Browse files
chore(deps): 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](actions/cache@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] <[email protected]>
1 parent ab3b765 commit 4e34dc1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/buildtest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
run: |
7171
python3 -c "from pip._internal.locations import USER_CACHE_DIR; print('dir=' + USER_CACHE_DIR)" >> $GITHUB_OUTPUT
7272
- name: Set pip cache
73-
uses: actions/cache@v4
73+
uses: actions/cache@v5
7474
with:
7575
path: ${{ steps.pip-cache.outputs.dir }}
7676
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
@@ -169,7 +169,7 @@ jobs:
169169
New-Item $dir -ItemType Directory
170170
"dir=$($dir)" >> ${Env:GITHUB_OUTPUT}
171171
- name: Set files cache
172-
uses: actions/cache@v4
172+
uses: actions/cache@v5
173173
with:
174174
path: ${{ steps.files.outputs.dir }}
175175
key: ${{ runner.os }}-64-files-${{ hashFiles('**/url.txt') }}
@@ -207,7 +207,7 @@ jobs:
207207
run: |
208208
python3 -c "from pip._internal.locations import USER_CACHE_DIR; print('dir=' + USER_CACHE_DIR)" >> ${Env:GITHUB_OUTPUT}
209209
- name: Set pip cache
210-
uses: actions/cache@v4
210+
uses: actions/cache@v5
211211
with:
212212
path: ${{ steps.pip-cache.outputs.dir }}
213213
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

0 commit comments

Comments
 (0)