Skip to content

Commit 335ffa5

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 d8505fd commit 335ffa5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: Load cached Poetry installation
2727
id: cached-poetry
28-
uses: actions/cache@v4
28+
uses: actions/cache@v5
2929
with:
3030
path: ~/.local
3131
key: poetry-${{ env.POETRY_VERSION }}-${{ runner.os }}
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: Load cached venv
4242
id: cached-venv
43-
uses: actions/cache@v4
43+
uses: actions/cache@v5
4444
with:
4545
path: .venv
4646
key: venv-lint-${{ runner.os }}-py3.14-${{ hashFiles('poetry.lock') }}
@@ -71,7 +71,7 @@ jobs:
7171

7272
- name: Load cached Poetry installation
7373
id: cached-poetry
74-
uses: actions/cache@v4
74+
uses: actions/cache@v5
7575
with:
7676
path: ~/.local
7777
key: poetry-${{ env.POETRY_VERSION }}-${{ runner.os }}
@@ -86,7 +86,7 @@ jobs:
8686

8787
- name: Load cached venv
8888
id: cached-venv
89-
uses: actions/cache@v4
89+
uses: actions/cache@v5
9090
with:
9191
path: .venv
9292
key: venv-test-${{ runner.os }}-py3.14-${{ hashFiles('poetry.lock') }}
@@ -132,7 +132,7 @@ jobs:
132132

133133
- name: Load cached Poetry installation
134134
id: cached-poetry
135-
uses: actions/cache@v4
135+
uses: actions/cache@v5
136136
with:
137137
path: ~/.local
138138
key: poetry-${{ env.POETRY_VERSION }}-${{ runner.os }}
@@ -147,7 +147,7 @@ jobs:
147147

148148
- name: Load cached venv
149149
id: cached-venv
150-
uses: actions/cache@v4
150+
uses: actions/cache@v5
151151
with:
152152
path: .venv
153153
key: venv-security-${{ runner.os }}-py3.14-${{ hashFiles('poetry.lock') }}

0 commit comments

Comments
 (0)