Skip to content

Commit 4eae81d

Browse files
chore(deps): bump the actions group across 1 directory with 7 updates
Bumps the actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `6` | `7` | | [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) | `3.1` | `3.2` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance) | `2.4.0` | `3.0.0` | | [wntrblm/nox](https://github.com/wntrblm/nox) | `2025.05.01` | `2025.10.16` | Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `astral-sh/setup-uv` from 6 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v6...v7) Updates `pypa/cibuildwheel` from 3.1 to 3.2 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v3.1...v3.2) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) Updates `actions/attest-build-provenance` from 2.4.0 to 3.0.0 - [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@e8998f9...977bb37) Updates `wntrblm/nox` from 2025.05.01 to 2025.10.16 - [Release notes](https://github.com/wntrblm/nox/releases) - [Changelog](https://github.com/wntrblm/nox/blob/main/CHANGELOG.md) - [Commits](wntrblm/nox@2025.05.01...2025.10.16) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pypa/cibuildwheel dependency-version: '3.2' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/attest-build-provenance dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: wntrblm/nox dependency-version: 2025.10.16 dependency-type: direct:production dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 73e920d commit 4eae81d

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- uses: actions/checkout@v5
33-
- uses: actions/setup-python@v5
33+
- uses: actions/setup-python@v6
3434
with:
3535
python-version: "3.x"
3636
- uses: pre-commit/[email protected]
@@ -123,7 +123,7 @@ jobs:
123123
with:
124124
fetch-depth: 0 # required for versioneer to find tags
125125

126-
- uses: astral-sh/setup-uv@v6
126+
- uses: astral-sh/setup-uv@v7
127127
if: (!matrix.use_qemu) || fromJSON(env.USE_QEMU)
128128
with:
129129
enable-cache: false
@@ -133,13 +133,13 @@ jobs:
133133
if: matrix.use_qemu && fromJSON(env.USE_QEMU)
134134

135135
- name: Build wheels
136-
uses: pypa/cibuildwheel@v3.1
136+
uses: pypa/cibuildwheel@v3.2
137137
if: (!matrix.use_qemu) || fromJSON(env.USE_QEMU)
138138
env:
139139
CIBW_ARCHS: "${{ matrix.arch }}"
140140
CIBW_BUILD: "cp310-${{ matrix.build }}*"
141141

142-
- uses: actions/upload-artifact@v4
142+
- uses: actions/upload-artifact@v5
143143
if: (!matrix.use_qemu) || fromJSON(env.USE_QEMU)
144144
with:
145145
name: cibw-${{ runner.os }}-${{ matrix.build }}${{ matrix.arch }}
@@ -157,7 +157,7 @@ jobs:
157157
- name: Build SDist
158158
run: pipx run build --sdist
159159

160-
- uses: actions/upload-artifact@v4
160+
- uses: actions/upload-artifact@v5
161161
with:
162162
name: cibw-sdist
163163
path: dist/*.tar.gz
@@ -173,7 +173,7 @@ jobs:
173173

174174
steps:
175175
- uses: actions/checkout@v5
176-
- uses: astral-sh/setup-uv@v6
176+
- uses: astral-sh/setup-uv@v7
177177
with:
178178
enable-cache: false
179179

@@ -187,7 +187,7 @@ jobs:
187187
sudo apt-get update
188188
sudo apt-get install -y --no-install-recommends libssl-dev
189189
190-
- uses: actions/download-artifact@v5
190+
- uses: actions/download-artifact@v6
191191
with:
192192
name: cibw-sdist
193193
path: dist
@@ -213,7 +213,7 @@ jobs:
213213

214214
steps:
215215
- uses: actions/checkout@v5
216-
- uses: actions/setup-python@v5
216+
- uses: actions/setup-python@v6
217217
id: python
218218
with:
219219
python-version: "3.x"
@@ -263,7 +263,7 @@ jobs:
263263
needs: [build_wheels, build_sdist, test_sdist, bootstrap_build]
264264
runs-on: ubuntu-latest
265265
steps:
266-
- uses: actions/download-artifact@v5
266+
- uses: actions/download-artifact@v6
267267
with:
268268
pattern: cibw-*
269269
merge-multiple: true
@@ -283,14 +283,14 @@ jobs:
283283
id-token: write
284284
attestations: write
285285
steps:
286-
- uses: actions/download-artifact@v5
286+
- uses: actions/download-artifact@v6
287287
with:
288288
pattern: cibw-*
289289
merge-multiple: true
290290
path: dist
291291

292292
- name: Generate artifact attestation for sdist and wheel
293-
uses: actions/attest-build-provenance@e8998f949152b193b063cb0ec769d69d929409be # v2.4.0
293+
uses: actions/attest-build-provenance@977bb373ede98d70efdf65b84cb5f73e068dcc2a # v3.0.0
294294
with:
295295
subject-path: "dist/cmake-*"
296296

.github/workflows/update-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
dependency_nice: "OpenSSL"
2727
steps:
2828
- uses: actions/checkout@v5
29-
- uses: wntrblm/nox@2025.05.01
29+
- uses: wntrblm/nox@2025.10.16
3030
- name: "Run update: bump ${{ matrix.dependency_nice }}"
3131
id: bump
3232
run: |

0 commit comments

Comments
 (0)