Skip to content

Commit 33c4d93

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 094f10f commit 33c4d93

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build_offline_docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
echo "PYTHON_VERSION=$(python --version)" >> $GITHUB_OUTPUT
3535
3636
- name: Restore cached virtualenv
37-
uses: actions/cache/restore@v4
37+
uses: actions/cache/restore@v5
3838
with:
3939
key: venv-${{ runner.os }}-${{ steps.pythonv.outputs.PYTHON_VERSION }}-${{ hashFiles('requirements.txt') }}
4040
path: .venv
@@ -50,7 +50,7 @@ jobs:
5050
sudo apt install parallel libwebp7 imagemagick
5151
5252
- name: Save virtualenv cache
53-
uses: actions/cache/save@v4
53+
uses: actions/cache/save@v5
5454
with:
5555
key: venv-${{ runner.os }}-${{ steps.pythonv.outputs.PYTHON_VERSION }}-${{ hashFiles('requirements.txt') }}
5656
path: .venv

.github/workflows/check_urls.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v5
1515

1616
- name: Restore lychee cache
17-
uses: actions/cache@v4
17+
uses: actions/cache@v5
1818
with:
1919
path: .lycheecache
2020
key: cache-lychee-${{ github.sha }}

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
echo "PYTHON_VERSION=$(python --version)" >> $GITHUB_OUTPUT
3030
3131
- name: Restore cached virtualenv
32-
uses: actions/cache/restore@v4
32+
uses: actions/cache/restore@v5
3333
with:
3434
key: venv-${{ runner.os }}-${{ steps.pythonv.outputs.PYTHON_VERSION }}-${{ hashFiles('requirements.txt') }}
3535
path: .venv
@@ -43,7 +43,7 @@ jobs:
4343
echo "VIRTUAL_ENV=$VIRTUAL_ENV" >> $GITHUB_ENV
4444
4545
- name: Save virtualenv cache
46-
uses: actions/cache/save@v4
46+
uses: actions/cache/save@v5
4747
with:
4848
key: venv-${{ runner.os }}-${{ steps.pythonv.outputs.PYTHON_VERSION }}-${{ hashFiles('requirements.txt') }}
4949
path: .venv

0 commit comments

Comments
 (0)