Skip to content

Commit 8d4d119

Browse files
build(deps): bump actions/cache from 3 to 4
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 21ace18 commit 8d4d119

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/pylic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# ----- install & configure poetry -----
2929
#----------------------------------------------
3030
- name: Load Cached Poetry Installation
31-
uses: actions/cache@v3
31+
uses: actions/cache@v4
3232
with:
3333
path: ~/.local # the path depends on the OS
3434
key: poetry-no-dev-3 # increment to reset cache
@@ -43,7 +43,7 @@ jobs:
4343
#----------------------------------------------
4444
- name: Load cached venv
4545
id: cached-poetry-no-dev-dependencies-v1
46-
uses: actions/cache@v3
46+
uses: actions/cache@v4
4747
with:
4848
path: .venv
4949
key: venv-no-dev-dependencies-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}

.github/workflows/static-checking.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# ----- install & configure poetry -----
2929
#----------------------------------------------
3030
- name: Load Cached Poetry Installation
31-
uses: actions/cache@v3
31+
uses: actions/cache@v4
3232
with:
3333
path: ~/.local # the path depends on the OS
3434
key: poetry-with-dev-0 # increment to reset cache
@@ -44,7 +44,7 @@ jobs:
4444
#----------------------------------------------
4545
- name: Load cached venv
4646
id: cached-poetry-with-dev-dependencies
47-
uses: actions/cache@v3
47+
uses: actions/cache@v4
4848
with:
4949
path: .venv
5050
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}

0 commit comments

Comments
 (0)