Skip to content

Commit 3d43f1f

Browse files
Bump actions/cache from 4 to 5 (#91)
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 2fd29e4 commit 3d43f1f

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/main-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
id: setup_python
3232
# Poetry cache depends on OS, Python version and Poetry version.
3333
- name: Cache Poetry cache
34-
uses: actions/cache@v4
34+
uses: actions/cache@v5
3535
with:
3636
path: ~/.cache/pypoetry
3737
key: poetry-cache-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ env.POETRY_VERSION }}
3838
# virtualenv cache should depends on OS, Python version and `poetry.lock` (and optionally workflow files).
3939
- name: Cache Packages
40-
uses: actions/cache@v4
40+
uses: actions/cache@v5
4141
with:
4242
path: ~/.local
4343
key: poetry-local-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}-${{ hashFiles('.github/workflows/*.yml') }}

.github/workflows/main-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
id: setup_python
3434
# Poetry cache depends on OS, Python version and Poetry version.
3535
- name: Cache Poetry cache
36-
uses: actions/cache@v4
36+
uses: actions/cache@v5
3737
with:
3838
path: ~/.cache/pypoetry
3939
key: poetry-cache-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ env.POETRY_VERSION }}
4040
# virtualenv cache should depends on OS, Python version and `poetry.lock` (and optionally workflow files).
4141
- name: Cache Packages
42-
uses: actions/cache@v4
42+
uses: actions/cache@v5
4343
with:
4444
path: ~/.local
4545
key: poetry-local-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}-${{ hashFiles('.github/workflows/*.yml') }}

.github/workflows/non-main-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ jobs:
3838
id: setup_python
3939
# Poetry cache depends on OS, Python version and Poetry version.
4040
- name: Cache Poetry cache
41-
uses: actions/cache@v4
41+
uses: actions/cache@v5
4242
with:
4343
path: ~/.cache/pypoetry
4444
key: poetry-cache-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ env.POETRY_VERSION }}
4545
# virtualenv cache should depends on OS, Python version and `poetry.lock` (and optionally workflow files).
4646
- name: Cache Packages
47-
uses: actions/cache@v4
47+
uses: actions/cache@v5
4848
with:
4949
path: ~/.local
5050
key: poetry-local-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}-${{ hashFiles('.github/workflows/*.yml') }}

.github/workflows/non-main-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ jobs:
4040
id: setup_python
4141
# Poetry cache depends on OS, Python version and Poetry version.
4242
- name: Cache Poetry cache
43-
uses: actions/cache@v4
43+
uses: actions/cache@v5
4444
with:
4545
path: ~/.cache/pypoetry
4646
key: poetry-cache-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ env.POETRY_VERSION }}
4747
# virtualenv cache should depends on OS, Python version and `poetry.lock` (and optionally workflow files).
4848
- name: Cache Packages
49-
uses: actions/cache@v4
49+
uses: actions/cache@v5
5050
with:
5151
path: ~/.local
5252
key: poetry-local-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}-${{ hashFiles('.github/workflows/*.yml') }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ jobs:
4444
python-version: ${{ matrix.python-version }}
4545
id: setup_python
4646
- name: Cache Poetry cache
47-
uses: actions/cache@v4
47+
uses: actions/cache@v5
4848
with:
4949
path: ~/.cache/pypoetry
5050
key: poetry-cache-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ env.POETRY_VERSION }}
5151
- name: Cache Packages
52-
uses: actions/cache@v4
52+
uses: actions/cache@v5
5353
with:
5454
path: ~/.local
5555
key: poetry-local-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}-${{ hashFiles('.github/workflows/*.yml') }}

0 commit comments

Comments
 (0)