Skip to content

Commit adc28da

Browse files
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-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent f11f583 commit adc28da

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: .github/workflows/build.yaml

100755100644
+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- name: "Load cached poetry installation @ ${{ matrix.python-version }}"
3131
id: cached-poetry
32-
uses: actions/cache@v3
32+
uses: actions/cache@v4
3333
with:
3434
path: ~/.local
3535
key: poetry-0
@@ -52,7 +52,7 @@ jobs:
5252

5353
- name: "Load cached venv @ ${{ matrix.python-version }}"
5454
id: cached-pip-wheels
55-
uses: actions/cache@v3
55+
uses: actions/cache@v4
5656
with:
5757
path: .venv/
5858
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}

Diff for: .github/workflows/coverage_and_lint.yaml

100755100644
+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: "Load cached poetry installation @ ${{ matrix.python-version }}"
2828
id: cached-poetry
29-
uses: actions/cache@v3
29+
uses: actions/cache@v4
3030
with:
3131
path: ~/.local
3232
key: poetry-0
@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: "Load cached venv @ ${{ matrix.python-version }}"
5151
id: cached-pip-wheels
52-
uses: actions/cache@v3
52+
uses: actions/cache@v4
5353
with:
5454
path: ~/.venv/
5555
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}

0 commit comments

Comments
 (0)