File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -139,22 +139,22 @@ jobs:
139139 # FreeType build fails with bash, succeeds with dash
140140
141141 - name : Cache pip
142- uses : actions/cache@v3
142+ uses : actions/cache@v4
143143 with :
144144 path : C:\cygwin\home\runneradmin\.cache\pip
145145 key : Cygwin-py3.${{ matrix.python-minor-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
146146 restore-keys : |
147147 ${{ matrix.os }}-py3.${{ matrix.python-minor-version }}-pip-
148148
149149 - name : Cache ccache
150- uses : actions/cache@v3
150+ uses : actions/cache@v4
151151 with :
152152 path : C:\cygwin\home\runneradmin\.ccache
153153 key : Cygwin-py3.${{ matrix.python-minor-version }}-ccache-${{ hashFiles('src/*') }}
154154 restore-keys : Cygwin-py3.${{ matrix.python-minor-version }}-ccache-
155155
156156 - name : Cache Matplotlib
157- uses : actions/cache@v3
157+ uses : actions/cache@v4
158158 with :
159159 path : |
160160 C:\cygwin\home\runneradmin\.cache\matplotlib
Original file line number Diff line number Diff line change @@ -162,31 +162,31 @@ jobs:
162162 esac
163163
164164 - name : Cache pip
165- uses : actions/cache@v3
165+ uses : actions/cache@v4
166166 if : startsWith(runner.os, 'Linux')
167167 with :
168168 path : ~/.cache/pip
169169 key : ${{ matrix.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
170170 restore-keys : |
171171 ${{ matrix.os }}-py${{ matrix.python-version }}-pip-
172172 - name : Cache pip
173- uses : actions/cache@v3
173+ uses : actions/cache@v4
174174 if : startsWith(runner.os, 'macOS')
175175 with :
176176 path : ~/Library/Caches/pip
177177 key : ${{ matrix.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
178178 restore-keys : |
179179 ${{ matrix.os }}-py${{ matrix.python-version }}-pip-
180180 - name : Cache ccache
181- uses : actions/cache@v3
181+ uses : actions/cache@v4
182182 with :
183183 path : |
184184 ~/.ccache
185185 key : ${{ matrix.os }}-py${{ matrix.python-version }}-ccache-${{ hashFiles('src/*') }}
186186 restore-keys : |
187187 ${{ matrix.os }}-py${{ matrix.python-version }}-ccache-
188188 - name : Cache Matplotlib
189- uses : actions/cache@v3
189+ uses : actions/cache@v4
190190 with :
191191 path : |
192192 ~/.cache/matplotlib
You can’t perform that action at this time.
0 commit comments