Skip to content

Commit 432d747

Browse files
Bump actions/cache from 4 to 5 (#755)
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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 23a413d commit 432d747

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
#----------------------------------------------
4646
- name: Load cached venv
4747
id: cached-poetry-dependencies
48-
uses: actions/cache@v4
48+
uses: actions/cache@v5
4949
with:
5050
path: .venv
5151
key: venv-${{ runner.os }}-${{ env.pythonversion }}-${{ hashFiles('**/poetry.lock') }}
@@ -117,7 +117,7 @@ jobs:
117117
#----------------------------------------------
118118
- name: Load cached venv
119119
id: cached-poetry-dependencies
120-
uses: actions/cache@v4
120+
uses: actions/cache@v5
121121
with:
122122
path: .venv
123123
key: venv-${{ runner.os }}-${{ matrix.pyver }}-${{ hashFiles('**/poetry.lock') }}

.github/workflows/docs-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Load cached venv
3838
id: cached-poetry-dependencies
39-
uses: actions/cache@v4
39+
uses: actions/cache@v5
4040
with:
4141
path: .venv
4242
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}

.github/workflows/pypi-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
python-version: 3.9
3333

3434
- name: Cache Poetry virtualenv
35-
uses: actions/cache@v4
35+
uses: actions/cache@v5
3636
id: cache
3737
with:
3838
path: ~/.virtualenvs

0 commit comments

Comments
 (0)