Skip to content

Commit b3a66d2

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] <[email protected]>
1 parent 3f5d6cc commit b3a66d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
- name: Load cached .venv
3232
id: cached-poetry-dependencies
33-
uses: actions/cache@v4
33+
uses: actions/cache@v5
3434
with:
3535
path: .venv
3636
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
@@ -76,7 +76,7 @@ jobs:
7676

7777
- name: Load cached .venv
7878
id: cached-poetry-dependencies
79-
uses: actions/cache@v4
79+
uses: actions/cache@v5
8080
with:
8181
path: .venv
8282
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
@@ -119,7 +119,7 @@ jobs:
119119

120120
- name: Load cached .venv
121121
id: cached-poetry-dependencies
122-
uses: actions/cache@v4
122+
uses: actions/cache@v5
123123
with:
124124
path: .venv
125125
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}

0 commit comments

Comments
 (0)