Skip to content

Commit 231c3c7

Browse files
committed
CI: update cache action to v4
1 parent 2134daf commit 231c3c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,19 @@ jobs:
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030

31-
- uses: actions/cache@v2
31+
- uses: actions/cache@v4
3232
if: startsWith(runner.os, 'Linux')
3333
with:
3434
path: ~/.cache/pip
3535
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
3636

37-
- uses: actions/cache@v2
37+
- uses: actions/cache@v4
3838
if: startsWith(runner.os, 'macOS')
3939
with:
4040
path: ~/Library/Caches/pip
4141
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
4242

43-
- uses: actions/cache@v2
43+
- uses: actions/cache@v4
4444
if: startsWith(runner.os, 'Windows')
4545
with:
4646
path: ~\AppData\Local\pip\Cache

0 commit comments

Comments
 (0)