Skip to content

Commit 6466686

Browse files
chore(actions): update actions/cache action to v4
1 parent bc942ff commit 6466686

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171

7272
- name: Cache pip dependencies
7373
id: cache
74-
uses: actions/cache@v3
74+
uses: actions/cache@v4
7575
with:
7676
path: ~/.cache/pip
7777
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: Cache pip
2626
id: cache
27-
uses: actions/cache@v3
27+
uses: actions/cache@v4
2828
with:
2929
path: ~/.cache/pip
3030
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
@@ -58,7 +58,7 @@ jobs:
5858

5959
- name: Cache pip dependencies
6060
id: cache
61-
uses: actions/cache@v3
61+
uses: actions/cache@v4
6262
with:
6363
path: ~/.cache/pip
6464
key: ${{ runner.os }}-pip-${{ hashFiles('requirements-docs.txt') }}

0 commit comments

Comments
 (0)