Skip to content

Commit f048468

Browse files
authored
Merge pull request matplotlib#27750 from matplotlib/dependabot/github_actions/actions-c1e38ad0e3
Bump the actions group with 2 updates
2 parents 669f9ac + a7178f9 commit f048468

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -146,39 +146,39 @@ jobs:
146146
path: dist/
147147

148148
- name: Build wheels for CPython 3.12
149-
uses: pypa/cibuildwheel@0b04ab1040366101259658b355777e4ff2d16f83 # v2.16.4
149+
uses: pypa/cibuildwheel@ce3fb7832089eb3e723a0a99cab7f3eaccf074fd # v2.16.5
150150
with:
151151
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
152152
env:
153153
CIBW_BUILD: "cp312-*"
154154
CIBW_ARCHS: ${{ matrix.cibw_archs }}
155155

156156
- name: Build wheels for CPython 3.11
157-
uses: pypa/cibuildwheel@0b04ab1040366101259658b355777e4ff2d16f83 # v2.16.4
157+
uses: pypa/cibuildwheel@ce3fb7832089eb3e723a0a99cab7f3eaccf074fd # v2.16.5
158158
with:
159159
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
160160
env:
161161
CIBW_BUILD: "cp311-*"
162162
CIBW_ARCHS: ${{ matrix.cibw_archs }}
163163

164164
- name: Build wheels for CPython 3.10
165-
uses: pypa/cibuildwheel@0b04ab1040366101259658b355777e4ff2d16f83 # v2.16.4
165+
uses: pypa/cibuildwheel@ce3fb7832089eb3e723a0a99cab7f3eaccf074fd # v2.16.5
166166
with:
167167
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
168168
env:
169169
CIBW_BUILD: "cp310-*"
170170
CIBW_ARCHS: ${{ matrix.cibw_archs }}
171171

172172
- name: Build wheels for CPython 3.9
173-
uses: pypa/cibuildwheel@0b04ab1040366101259658b355777e4ff2d16f83 # v2.16.4
173+
uses: pypa/cibuildwheel@ce3fb7832089eb3e723a0a99cab7f3eaccf074fd # v2.16.5
174174
with:
175175
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
176176
env:
177177
CIBW_BUILD: "cp39-*"
178178
CIBW_ARCHS: ${{ matrix.cibw_archs }}
179179

180180
- name: Build wheels for PyPy
181-
uses: pypa/cibuildwheel@0b04ab1040366101259658b355777e4ff2d16f83 # v2.16.4
181+
uses: pypa/cibuildwheel@ce3fb7832089eb3e723a0a99cab7f3eaccf074fd # v2.16.5
182182
with:
183183
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
184184
env:

.github/workflows/cygwin.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,4 +247,6 @@ jobs:
247247
--cov-report=xml --cov=lib --log-level=DEBUG --color=yes
248248
249249
- name: Upload code coverage
250-
uses: codecov/codecov-action@v3
250+
uses: codecov/codecov-action@v4
251+
with:
252+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,9 +337,10 @@ jobs:
337337
fi
338338
- name: Upload code coverage
339339
if: ${{ github.event_name != 'schedule' }}
340-
uses: codecov/codecov-action@v3
340+
uses: codecov/codecov-action@v4
341341
with:
342342
name: "${{ matrix.python-version }} ${{ matrix.os }} ${{ matrix.name-suffix }}"
343+
token: ${{ secrets.CODECOV_TOKEN }}
343344

344345
- uses: actions/upload-artifact@v4
345346
if: failure()

0 commit comments

Comments
 (0)