Skip to content

Commit 17b8fce

Browse files
chore(deps): bump the actions group across 1 directory with 6 updates
Bumps the actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `3.6.0` | `3.7.0` | | [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) | `2.23.2` | `3.3.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `docker/setup-qemu-action` from 3.6.0 to 3.7.0 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@v3.6.0...v3.7.0) Updates `pypa/cibuildwheel` from 2.23.2 to 3.3.0 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v2.23.2...v3.3.0) 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/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/setup-qemu-action dependency-version: 3.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: pypa/cibuildwheel dependency-version: 3.3.0 dependency-type: direct:production update-type: version-update:semver-major 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/setup-python dependency-version: '6' 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 ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 272d6e0 commit 17b8fce

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

.github/workflows/release.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
arch: "arm64"
8888

8989
steps:
90-
- uses: actions/checkout@v5
90+
- uses: actions/checkout@v6
9191
with:
9292
sparse-checkout: |
9393
clang-format
@@ -130,19 +130,19 @@ jobs:
130130
cat clang-format_version.txt
131131
132132
- name: Set up QEMU
133-
uses: docker/setup-qemu-action@v3.6.0
133+
uses: docker/setup-qemu-action@v3.7.0
134134
with:
135135
image: tonistiigi/binfmt:qemu-v8.1.5
136136
if: runner.os == 'Linux' && matrix.emulation == 'qemu'
137137

138138
- name: Build wheels
139-
uses: pypa/cibuildwheel@v3.1
139+
uses: pypa/cibuildwheel@v3.3.0
140140
env:
141141
CIBW_ARCHS: "${{ matrix.arch }}"
142142
# restrict to a single Python version as wheel does not depend on Python:
143143
CIBW_BUILD: "cp311-${{ matrix.platform }}*"
144144

145-
- uses: actions/upload-artifact@v4
145+
- uses: actions/upload-artifact@v5
146146
with:
147147
name: clang-format-wheels-${{ matrix.platform }}-${{ matrix.arch }}
148148
path: ./wheelhouse/*.whl
@@ -186,7 +186,7 @@ jobs:
186186
arch: "arm64"
187187

188188
steps:
189-
- uses: actions/checkout@v5
189+
- uses: actions/checkout@v6
190190
with:
191191
sparse-checkout: |
192192
clang-tidy
@@ -227,7 +227,7 @@ jobs:
227227
cat clang-tidy_version.txt
228228
229229
- name: Build wheels
230-
uses: pypa/cibuildwheel@v2.23.2
230+
uses: pypa/cibuildwheel@v3.3.0
231231
env:
232232
CIBW_ARCHS: "${{ matrix.arch }}"
233233
CIBW_BEFORE_TEST: rm -rf {package}/clang_tidy
@@ -237,7 +237,7 @@ jobs:
237237
# restrict to a single Python version as wheel does not depend on Python:
238238
CIBW_BUILD: "cp311-${{ matrix.platform }}*"
239239

240-
- uses: actions/upload-artifact@v4
240+
- uses: actions/upload-artifact@v5
241241
with:
242242
name: clang-tidy-wheels-${{ matrix.platform }}-${{ matrix.arch }}
243243
path: ./wheelhouse/*.whl
@@ -247,7 +247,7 @@ jobs:
247247
runs-on: ubuntu-latest
248248

249249
steps:
250-
- uses: actions/checkout@v5
250+
- uses: actions/checkout@v6
251251
with:
252252
sparse-checkout: |
253253
clang-format
@@ -276,7 +276,7 @@ jobs:
276276
- name: Build SDist
277277
run: pipx run build --sdist
278278

279-
- uses: actions/upload-artifact@v4
279+
- uses: actions/upload-artifact@v5
280280
with:
281281
name: clang-format-sdist
282282
path: dist/*.tar.gz
@@ -286,7 +286,7 @@ jobs:
286286
runs-on: ubuntu-latest
287287

288288
steps:
289-
- uses: actions/checkout@v5
289+
- uses: actions/checkout@v6
290290
with:
291291
sparse-checkout: |
292292
clang-tidy
@@ -315,7 +315,7 @@ jobs:
315315
- name: Build SDist
316316
run: pipx run build --sdist
317317

318-
- uses: actions/upload-artifact@v4
318+
- uses: actions/upload-artifact@v5
319319
with:
320320
path: dist/*.tar.gz
321321
name: clang-tidy-sdist
@@ -326,7 +326,7 @@ jobs:
326326
runs-on: ubuntu-latest
327327

328328
steps:
329-
- uses: actions/checkout@v5
329+
- uses: actions/checkout@v6
330330
with:
331331
sparse-checkout: |
332332
clang-format
@@ -346,12 +346,12 @@ jobs:
346346
rm -rf clang-format
347347
fi
348348
349-
- uses: actions/setup-python@v5
349+
- uses: actions/setup-python@v6
350350
name: Install Python
351351
with:
352352
python-version: '3.13'
353353

354-
- uses: actions/download-artifact@v5
354+
- uses: actions/download-artifact@v6
355355
with:
356356
name: clang-format-sdist
357357
path: sdist
@@ -380,7 +380,7 @@ jobs:
380380
runs-on: ubuntu-latest
381381

382382
steps:
383-
- uses: actions/checkout@v5
383+
- uses: actions/checkout@v6
384384
with:
385385
sparse-checkout: |
386386
clang-tidy
@@ -400,12 +400,12 @@ jobs:
400400
rm -rf clang-tidy
401401
fi
402402
403-
- uses: actions/setup-python@v5
403+
- uses: actions/setup-python@v6
404404
name: Install Python
405405
with:
406406
python-version: '3.13'
407407

408-
- uses: actions/download-artifact@v5
408+
- uses: actions/download-artifact@v6
409409
with:
410410
name: clang-tidy-sdist
411411
path: sdist
@@ -439,13 +439,13 @@ jobs:
439439
contents: write
440440

441441
steps:
442-
- uses: actions/download-artifact@v5
442+
- uses: actions/download-artifact@v6
443443
with:
444444
pattern: clang-format-*
445445
merge-multiple: true
446446
path: clang-format-dist
447447

448-
- uses: actions/download-artifact@v5
448+
- uses: actions/download-artifact@v6
449449
with:
450450
pattern: clang-tidy-*
451451
merge-multiple: true

0 commit comments

Comments
 (0)