Skip to content

Commit cdfc17a

Browse files
chore(actions): update actions/cache action to v4
1 parent 3d4e482 commit cdfc17a

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.github/workflows/docs.yaml

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

7171
- name: Cache pip dependencies
7272
id: cache
73-
uses: actions/cache@v3
73+
uses: actions/cache@v4
7474
with:
7575
path: ~/.cache/pip
7676
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
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
python-version: "3.10"
4343

44-
- uses: actions/cache@v3
44+
- uses: actions/cache@v4
4545
name: Cache pip dependencies
4646
with:
4747
path: ~/.cache/pip
@@ -95,7 +95,7 @@ jobs:
9595

9696
- name: Cache pip dependencies
9797
id: cache
98-
uses: actions/cache@v3
98+
uses: actions/cache@v4
9999
with:
100100
path: ~/.cache/pip
101101
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}

.github/workflows/release-deprecated.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
python-version: "3.8"
2525

26-
- uses: actions/cache@v3
26+
- uses: actions/cache@v4
2727
name: Cache pip dependencies
2828
with:
2929
path: ~/.cache/pip

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
python-version: "3.10"
2626

27-
- uses: actions/cache@v3
27+
- uses: actions/cache@v4
2828
name: Cache pip dependencies
2929
with:
3030
path: ~/.cache/pip

.github/workflows/tests.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -58,21 +58,21 @@ jobs:
5858
python-version: ${{ matrix.python-version }}
5959
architecture: x64
6060

61-
- uses: actions/cache@v3
61+
- uses: actions/cache@v4
6262
if: startsWith(runner.os, 'Linux')
6363
with:
6464
path: ~/.cache/pip
6565
key: ${{ runner.os }}-${{ matrix.pandas }}-pip-${{ hashFiles('**/requirements.txt') }}
6666
restore-keys: |
6767
${{ runner.os }}-${{ matrix.pandas }}-pip-
68-
- uses: actions/cache@v3
68+
- uses: actions/cache@v4
6969
if: startsWith(runner.os, 'macOS')
7070
with:
7171
path: ~/Library/Caches/pip
7272
key: ${{ runner.os }}-${{ matrix.pandas }}-pip-${{ hashFiles('**/requirements.txt') }}
7373
restore-keys: |
7474
${{ runner.os }}-${{ matrix.pandas }}-pip-
75-
- uses: actions/cache@v3
75+
- uses: actions/cache@v4
7676
if: startsWith(runner.os, 'Windows')
7777
with:
7878
path: ~\AppData\Local\pip\Cache
@@ -106,21 +106,21 @@ jobs:
106106
python-version: ${{ matrix.python-version }}
107107
architecture: x64
108108

109-
- uses: actions/cache@v3
109+
- uses: actions/cache@v4
110110
if: startsWith(runner.os, 'Linux')
111111
with:
112112
path: ~/.cache/pip
113113
key: ${{ runner.os }}-${{ matrix.pandas }}-pip-${{ hashFiles('**/requirements.txt') }}
114114
restore-keys: |
115115
${{ runner.os }}-${{ matrix.pandas }}-pip-
116-
- uses: actions/cache@v3
116+
- uses: actions/cache@v4
117117
if: startsWith(runner.os, 'macOS')
118118
with:
119119
path: ~/Library/Caches/pip
120120
key: ${{ runner.os }}-${{ matrix.pandas }}-pip-${{ hashFiles('**/requirements.txt') }}
121121
restore-keys: |
122122
${{ runner.os }}-${{ matrix.pandas }}-pip-
123-
- uses: actions/cache@v3
123+
- uses: actions/cache@v4
124124
if: startsWith(runner.os, 'Windows')
125125
with:
126126
path: ~\AppData\Local\pip\Cache
@@ -135,7 +135,7 @@ jobs:
135135

136136
- run: make test_cov
137137

138-
- uses: actions/cache@v3
138+
- uses: actions/cache@v4
139139
if: startsWith(runner.os, 'Windows')
140140
with:
141141
path: ~\AppData\Local\pip\Cache
@@ -189,21 +189,21 @@ jobs:
189189
with:
190190
python-version: ${{ matrix.python-version }}
191191
architecture: x64
192-
- uses: actions/cache@v3
192+
- uses: actions/cache@v4
193193
if: startsWith(runner.os, 'Linux')
194194
with:
195195
path: ~/.cache/pip
196196
key: ${{ runner.os }}-${{ matrix.pandas }}-pip-${{ hashFiles('**/requirements.txt') }}
197197
restore-keys: |
198198
${{ runner.os }}-${{ matrix.pandas }}-pip-\
199-
- uses: actions/cache@v3
199+
- uses: actions/cache@v4
200200
if: startsWith(runner.os, 'macOS')
201201
with:
202202
path: ~/Library/Caches/pip
203203
key: ${{ runner.os }}-${{ matrix.pandas }}-pip-${{ hashFiles('**/requirements.txt') }}
204204
restore-keys: |
205205
${{ runner.os }}-${{ matrix.pandas }}-pip-
206-
- uses: actions/cache@v3
206+
- uses: actions/cache@v4
207207
if: startsWith(runner.os, 'Windows')
208208
with:
209209
path: ~\AppData\Local\pip\Cache

0 commit comments

Comments
 (0)