Skip to content

Commit 5fa31c9

Browse files
ci: bump actions/cache from 3 to 4 (#19)
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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent d76bea4 commit 5fa31c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
python-version: "3.11" # Always use the lowest possible version to ensure correctness of the code.
2323
#----------------------------------------------
24-
- uses: actions/cache@v3
24+
- uses: actions/cache@v4
2525
with:
2626
path: ~/.cache/pip
2727
key: ${{ runner.os }}-pip
@@ -57,7 +57,7 @@ jobs:
5757
python-version: ${{ matrix.python-version }}
5858

5959
- name: cache poetry install
60-
uses: actions/cache@v3
60+
uses: actions/cache@v4
6161
with:
6262
path: ~/.local
6363
key: poetry-${{ matrix.os }}-${{ matrix.python-version }}
@@ -70,7 +70,7 @@ jobs:
7070

7171
- name: Load cached venv
7272
id: cached-poetry-dependencies
73-
uses: actions/cache@v3
73+
uses: actions/cache@v4
7474
with:
7575
path: .venv
7676
key: venv-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}

0 commit comments

Comments
 (0)