Skip to content

Commit b83069c

Browse files
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] <support@github.com>
1 parent 7b4a906 commit b83069c

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/cff-validator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
python -m pip install --user --upgrade pip
4545
echo "dir=$(pip cache dir)" >> ${GITHUB_OUTPUT}
4646
- name: "Create/Restore cache"
47-
uses: "actions/cache@v4"
47+
uses: "actions/cache@v5"
4848
with:
4949
path: "${{ steps.pip-cache.outputs.dir }}/**"
5050
key: |

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
python -m pip install --user --upgrade pip
4545
echo "dir=$(pip cache dir)" >> ${GITHUB_OUTPUT}
4646
- name: "Create/Restore cache"
47-
uses: "actions/cache@v4"
47+
uses: "actions/cache@v5"
4848
with:
4949
path: "${{ steps.pip-cache.outputs.dir }}/**"
5050
key: |

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
python -m pip install --user --upgrade pip
5555
echo "dir=$(pip cache dir)" >> ${GITHUB_OUTPUT}
5656
- name: "Create/Restore cache"
57-
uses: "actions/cache@v4"
57+
uses: "actions/cache@v5"
5858
with:
5959
path: "${{ steps.pip-cache.outputs.dir }}/**"
6060
key: |
@@ -193,7 +193,7 @@ jobs:
193193
python -m pip install --user --upgrade pip
194194
echo "dir=$(pip cache dir)" >> ${GITHUB_OUTPUT}
195195
- name: "Create/Restore cache"
196-
uses: "actions/cache@v4"
196+
uses: "actions/cache@v5"
197197
with:
198198
path: |
199199
${{ steps.pip-cache.outputs.dir }}/**

0 commit comments

Comments
 (0)