Skip to content

Commit 2bb5023

Browse files
Merge pull request #1861 from VWS-Python/dependabot/github_actions/actions/cache-4
Bump actions/cache from 3 to 4
2 parents 76cde97 + 4d5bf51 commit 2bb5023

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
python -m pip cache dir
116116
echo "dir=$(python -m pip cache dir)" >> $GITHUB_OUTPUT
117117
118-
- uses: actions/cache@v3
118+
- uses: actions/cache@v4
119119
with:
120120
path: ${{ steps.pip-cache.outputs.dir }}
121121
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030

31-
- uses: actions/cache@v3
31+
- uses: actions/cache@v4
3232
with:
3333
path: ~/.cache/pip
3434
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}

.github/workflows/skip-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
python-version: ${{ matrix.python-version }}
3838

3939
# See https://github.com/actions/cache/blob/main/examples.md#python---pip
40-
- uses: actions/cache@v3
40+
- uses: actions/cache@v4
4141
with:
4242
path: ~\AppData\Local\pip\Cache
4343
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}

.github/workflows/windows-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
python-version: ${{ matrix.python-version }}
3636

3737
# See https://github.com/actions/cache/blob/main/examples.md#python---pip
38-
- uses: actions/cache@v3
38+
- uses: actions/cache@v4
3939
with:
4040
path: ~\AppData\Local\pip\Cache
4141
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}

0 commit comments

Comments
 (0)