Skip to content

Commit c9ba738

Browse files
committed
Update github cache action to non-deprecated version
1 parent 557ee20 commit c9ba738

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/install_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: |
2929
python -m pip install poetry
3030
- name: Cache the virtualenv
31-
uses: actions/cache@v2
31+
uses: actions/cache@v4
3232
with:
3333
path: ./.venv
3434
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}

.github/workflows/install_test_coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: |
2828
python -m pip install poetry
2929
- name: Cache the virtualenv
30-
uses: actions/cache@v2
30+
uses: actions/cache@v4
3131
with:
3232
path: ./.venv
3333
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}

.github/workflows/install_test_setup_py.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: |
2626
python -m pip install poetry
2727
- name: Cache the virtualenv
28-
uses: actions/cache@v2
28+
uses: actions/cache@v4
2929
with:
3030
path: ./.venv
3131
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}

.github/workflows/pylint_and_mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run: |
2121
python -m pip install poetry
2222
- name: Cache the virtualenv
23-
uses: actions/cache@v2
23+
uses: actions/cache@v4
2424
with:
2525
path: ./.venv
2626
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}

0 commit comments

Comments
 (0)