Skip to content

Commit f9fa77b

Browse files
Bump the actions group across 1 directory with 5 updates
Bumps the actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) | `2.20.0` | `2.21.1` | | [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance) | `1.4.1` | `1.4.3` | | [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.9.0` | `1.10.2` | | [scientific-python/upload-nightly-action](https://github.com/scientific-python/upload-nightly-action) | `0.5.0` | `0.6.1` | | [deadsnakes/action](https://github.com/deadsnakes/action) | `3.1.0` | `3.2.0` | Updates `pypa/cibuildwheel` from 2.20.0 to 2.21.1 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@bd033a4...d4a2945) Updates `actions/attest-build-provenance` from 1.4.1 to 1.4.3 - [Release notes](https://github.com/actions/attest-build-provenance/releases) - [Changelog](https://github.com/actions/attest-build-provenance/blob/main/RELEASE.md) - [Commits](actions/attest-build-provenance@310b0a4...1c608d1) Updates `pypa/gh-action-pypi-publish` from 1.9.0 to 1.10.2 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@ec4db0b...897895f) Updates `scientific-python/upload-nightly-action` from 0.5.0 to 0.6.1 - [Release notes](https://github.com/scientific-python/upload-nightly-action/releases) - [Commits](scientific-python/upload-nightly-action@b67d7fc...82396a2) Updates `deadsnakes/action` from 3.1.0 to 3.2.0 - [Release notes](https://github.com/deadsnakes/action/releases) - [Commits](deadsnakes/action@6c8b9b8...e640ac8) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/attest-build-provenance dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: scientific-python/upload-nightly-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: deadsnakes/action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 6404c95 commit f9fa77b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/cibuildwheel.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
path: dist/
144144

145145
- name: Build wheels for CPython 3.13
146-
uses: pypa/cibuildwheel@bd033a44476646b606efccdd5eed92d5ea1d77ad # v2.20.0
146+
uses: pypa/cibuildwheel@d4a2945fcc8d13f20a1b99d461b8e844d5fc6e23 # v2.21.1
147147
with:
148148
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
149149
env:
@@ -163,31 +163,31 @@ jobs:
163163
CIBW_ARCHS: ${{ matrix.cibw_archs }}
164164

165165
- name: Build wheels for CPython 3.12
166-
uses: pypa/cibuildwheel@bd033a44476646b606efccdd5eed92d5ea1d77ad # v2.20.0
166+
uses: pypa/cibuildwheel@d4a2945fcc8d13f20a1b99d461b8e844d5fc6e23 # v2.21.1
167167
with:
168168
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
169169
env:
170170
CIBW_BUILD: "cp312-*"
171171
CIBW_ARCHS: ${{ matrix.cibw_archs }}
172172

173173
- name: Build wheels for CPython 3.11
174-
uses: pypa/cibuildwheel@bd033a44476646b606efccdd5eed92d5ea1d77ad # v2.20.0
174+
uses: pypa/cibuildwheel@d4a2945fcc8d13f20a1b99d461b8e844d5fc6e23 # v2.21.1
175175
with:
176176
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
177177
env:
178178
CIBW_BUILD: "cp311-*"
179179
CIBW_ARCHS: ${{ matrix.cibw_archs }}
180180

181181
- name: Build wheels for CPython 3.10
182-
uses: pypa/cibuildwheel@bd033a44476646b606efccdd5eed92d5ea1d77ad # v2.20.0
182+
uses: pypa/cibuildwheel@d4a2945fcc8d13f20a1b99d461b8e844d5fc6e23 # v2.21.1
183183
with:
184184
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
185185
env:
186186
CIBW_BUILD: "cp310-*"
187187
CIBW_ARCHS: ${{ matrix.cibw_archs }}
188188

189189
- name: Build wheels for PyPy
190-
uses: pypa/cibuildwheel@bd033a44476646b606efccdd5eed92d5ea1d77ad # v2.20.0
190+
uses: pypa/cibuildwheel@d4a2945fcc8d13f20a1b99d461b8e844d5fc6e23 # v2.21.1
191191
with:
192192
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
193193
env:
@@ -231,9 +231,9 @@ jobs:
231231
run: ls dist
232232

233233
- name: Generate artifact attestation for sdist and wheel
234-
uses: actions/attest-build-provenance@310b0a4a3b0b78ef57ecda988ee04b132db73ef8 # v1.4.1
234+
uses: actions/attest-build-provenance@1c608d11d69870c2092266b3f9a6f3abbf17002c # v1.4.3
235235
with:
236236
subject-path: dist/matplotlib-*
237237

238238
- name: Publish package distributions to PyPI
239-
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # v1.9.0
239+
uses: pypa/gh-action-pypi-publish@897895f1e160c830e369f9779632ebc134688e1b # v1.10.2

.github/workflows/nightlies.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
ls -l dist/
6060
6161
- name: Upload wheels to Anaconda Cloud as nightlies
62-
uses: scientific-python/upload-nightly-action@b67d7fcc0396e1128a474d1ab2b48aa94680f9fc # 0.5.0
62+
uses: scientific-python/upload-nightly-action@82396a2ed4269ba06c6b2988bb4fd568ef3c3d6b # 0.6.1
6363
with:
6464
artifacts_path: dist
6565
anaconda_nightly_upload_token: ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }}

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
allow-prereleases: true
125125

126126
- name: Set up Python ${{ matrix.python-version }}
127-
uses: deadsnakes/action@6c8b9b82fe0b4344f4b98f2775fcc395df45e494 # v3.1.0
127+
uses: deadsnakes/action@e640ac8743173a67cca4d7d77cd837e514bf98e8 # v3.2.0
128128
if: matrix.python-version == '3.13t'
129129
with:
130130
python-version: '3.13'

0 commit comments

Comments
 (0)