File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -139,22 +139,22 @@ jobs:
139
139
# FreeType build fails with bash, succeeds with dash
140
140
141
141
- name : Cache pip
142
- uses : actions/cache@v3
142
+ uses : actions/cache@v4
143
143
with :
144
144
path : C:\cygwin\home\runneradmin\.cache\pip
145
145
key : Cygwin-py3.${{ matrix.python-minor-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
146
146
restore-keys : |
147
147
${{ matrix.os }}-py3.${{ matrix.python-minor-version }}-pip-
148
148
149
149
- name : Cache ccache
150
- uses : actions/cache@v3
150
+ uses : actions/cache@v4
151
151
with :
152
152
path : C:\cygwin\home\runneradmin\.ccache
153
153
key : Cygwin-py3.${{ matrix.python-minor-version }}-ccache-${{ hashFiles('src/*') }}
154
154
restore-keys : Cygwin-py3.${{ matrix.python-minor-version }}-ccache-
155
155
156
156
- name : Cache Matplotlib
157
- uses : actions/cache@v3
157
+ uses : actions/cache@v4
158
158
with :
159
159
path : |
160
160
C:\cygwin\home\runneradmin\.cache\matplotlib
Original file line number Diff line number Diff line change @@ -162,31 +162,31 @@ jobs:
162
162
esac
163
163
164
164
- name : Cache pip
165
- uses : actions/cache@v3
165
+ uses : actions/cache@v4
166
166
if : startsWith(runner.os, 'Linux')
167
167
with :
168
168
path : ~/.cache/pip
169
169
key : ${{ matrix.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
170
170
restore-keys : |
171
171
${{ matrix.os }}-py${{ matrix.python-version }}-pip-
172
172
- name : Cache pip
173
- uses : actions/cache@v3
173
+ uses : actions/cache@v4
174
174
if : startsWith(runner.os, 'macOS')
175
175
with :
176
176
path : ~/Library/Caches/pip
177
177
key : ${{ matrix.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
178
178
restore-keys : |
179
179
${{ matrix.os }}-py${{ matrix.python-version }}-pip-
180
180
- name : Cache ccache
181
- uses : actions/cache@v3
181
+ uses : actions/cache@v4
182
182
with :
183
183
path : |
184
184
~/.ccache
185
185
key : ${{ matrix.os }}-py${{ matrix.python-version }}-ccache-${{ hashFiles('src/*') }}
186
186
restore-keys : |
187
187
${{ matrix.os }}-py${{ matrix.python-version }}-ccache-
188
188
- name : Cache Matplotlib
189
- uses : actions/cache@v3
189
+ uses : actions/cache@v4
190
190
with :
191
191
path : |
192
192
~/.cache/matplotlib
You can’t perform that action at this time.
0 commit comments