Skip to content

Commit 3903597

Browse files
authored
Merge pull request #27684 from matplotlib/dependabot/github_actions/actions-3e83326924
Bump the actions group with 1 update
2 parents 2122f65 + 91ed132 commit 3903597

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/cygwin.yml

+3-3
Original file line numberDiff line numberDiff 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

.github/workflows/tests.yml

+4-4
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)