Skip to content

Commit 1c343d6

Browse files
Bump actions/cache from 3 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...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 b71a992 commit 1c343d6

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/build_executable.yml

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

6969
- name: Load cached Poetry setup
7070
id: cached-poetry
71-
uses: actions/cache@v3
71+
uses: actions/cache@v5
7272
with:
7373
path: ~/.local
7474
key: poetry-${{ matrix.os }}-2 # increment to reset cache

.github/workflows/docker-image.yml

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

3535
- name: Load cached Poetry setup
3636
id: cached_poetry
37-
uses: actions/cache@v4
37+
uses: actions/cache@v5
3838
with:
3939
path: ~/.local
4040
key: poetry-ubuntu-1 # increment to reset cache

.github/workflows/pre_release.yml

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

4040
- name: Load cached Poetry setup
4141
id: cached-poetry
42-
uses: actions/cache@v3
42+
uses: actions/cache@v5
4343
with:
4444
path: ~/.local
4545
key: poetry-ubuntu-1 # increment to reset cache

.github/workflows/release.yml

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

3939
- name: Load cached Poetry setup
4040
id: cached-poetry
41-
uses: actions/cache@v3
41+
uses: actions/cache@v5
4242
with:
4343
path: ~/.local
4444
key: poetry-ubuntu-1 # increment to reset cache

.github/workflows/ruff.yml

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

2828
- name: Load cached Poetry setup
2929
id: cached-poetry
30-
uses: actions/cache@v3
30+
uses: actions/cache@v5
3131
with:
3232
path: ~/.local
3333
key: poetry-ubuntu-1 # increment to reset cache

.github/workflows/tests.yml

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

3333
- name: Load cached Poetry setup
3434
id: cached-poetry
35-
uses: actions/cache@v3
35+
uses: actions/cache@v5
3636
with:
3737
path: ~/.local
3838
key: poetry-ubuntu-1 # increment to reset cache

.github/workflows/tests_full.yml

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

4848
- name: Load cached Poetry setup
4949
id: cached-poetry
50-
uses: actions/cache@v3
50+
uses: actions/cache@v5
5151
with:
5252
path: ~/.local
5353
key: poetry-${{ matrix.os }}-${{ matrix.python-version }}-3 # increment to reset cache

0 commit comments

Comments
 (0)