Skip to content

Commit adb9b52

Browse files
Build: Bump the github-actions group across 1 directory with 6 updates
Bumps the github-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6.0.1` | `6.0.2` | | [actions/setup-python](https://github.com/actions/setup-python) | `6.1.0` | `6.2.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `6` | `7` | | [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `3` | `4` | | [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) | `3.3.0` | `3.4.0` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `7.0.0` | `8.0.0` | Updates `actions/checkout` from 6.0.1 to 6.0.2 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v6.0.1...v6.0.2) Updates `actions/setup-python` from 6.1.0 to 6.2.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v6.1.0...v6.2.0) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) Updates `docker/setup-qemu-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@v3...v4) Updates `pypa/cibuildwheel` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v3.3.0...v3.4.0) Updates `actions/download-artifact` from 7.0.0 to 8.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@37930b1...70fc10c) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: 6.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/setup-qemu-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/cibuildwheel dependency-version: 3.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 6e2db49 commit adb9b52

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
runs-on: ubuntu-latest
2626

2727
steps:
28-
- uses: actions/checkout@v6.0.1
28+
- uses: actions/checkout@v6.0.2
2929

3030
- name: Set up Python
31-
uses: actions/setup-python@v6.1.0
31+
uses: actions/setup-python@v6.2.0
3232
with:
3333
python-version: "3.12"
3434

@@ -40,7 +40,7 @@ jobs:
4040
run: make sdist
4141

4242
- name: Archive sdist
43-
uses: actions/upload-artifact@v6
43+
uses: actions/upload-artifact@v7
4444
with:
4545
name: sdist
4646
path: dist/*.tar.gz
@@ -75,10 +75,10 @@ jobs:
7575
runs-on: ${{ matrix.os }}
7676

7777
steps:
78-
- uses: actions/checkout@v6.0.1
78+
- uses: actions/checkout@v6.0.2
7979

8080
- name: Set up Python
81-
uses: actions/setup-python@v6.1.0
81+
uses: actions/setup-python@v6.2.0
8282
with:
8383
python-version: ${{ matrix.python-version }}
8484

@@ -138,10 +138,10 @@ jobs:
138138
runs-on: ubuntu-latest
139139

140140
steps:
141-
- uses: actions/checkout@v6.0.1
141+
- uses: actions/checkout@v6.0.2
142142

143143
- name: Set up Python
144-
uses: actions/setup-python@v6.1.0
144+
uses: actions/setup-python@v6.2.0
145145
with:
146146
python-version: "3.12"
147147

@@ -157,7 +157,7 @@ jobs:
157157
run: cp -v wheelhouse*/*-m*linux*.whl dist/ # manylinux / musllinux
158158

159159
- name: Archive Wheels
160-
uses: actions/upload-artifact@v6
160+
uses: actions/upload-artifact@v7
161161
with:
162162
name: wheels-${{ matrix.image }}-${{ matrix.pyversion }}
163163
path: dist/*.whl
@@ -191,10 +191,10 @@ jobs:
191191
env: { MACOSX_DEPLOYMENT_TARGET: 11.0 }
192192

193193
steps:
194-
- uses: actions/checkout@v6.0.1
194+
- uses: actions/checkout@v6.0.2
195195

196196
- name: Set up Python
197-
uses: actions/setup-python@v6.1.0
197+
uses: actions/setup-python@v6.2.0
198198
with:
199199
python-version: ${{ matrix.python-version }}
200200

@@ -210,7 +210,7 @@ jobs:
210210
run: make testslow
211211

212212
- name: Upload wheels
213-
uses: actions/upload-artifact@v6
213+
uses: actions/upload-artifact@v7
214214
with:
215215
name: wheels-${{ matrix.os }}-${{ matrix.python-version }}
216216
path: dist/*.whl
@@ -231,7 +231,7 @@ jobs:
231231

232232
steps:
233233
- name: Merge wheels
234-
uses: actions/upload-artifact/merge@v6
234+
uses: actions/upload-artifact/merge@v7
235235
with:
236236
name: all_wheels
237237
pattern: wheels-*

.github/workflows/wheels.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ jobs:
4444
contents: write
4545

4646
steps:
47-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4.1.1
47+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.1.1
4848

4949
- name: Set up Python
50-
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
50+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
5151
with:
5252
python-version: "3.x"
5353

@@ -58,7 +58,7 @@ jobs:
5858
run: make sdist
5959

6060
- name: Upload sdist
61-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
61+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
6262
with:
6363
name: sdist
6464
path: dist/*.tar.gz
@@ -72,7 +72,7 @@ jobs:
7272
outputs:
7373
include: ${{ steps.set-matrix.outputs.include }}
7474
steps:
75-
- uses: actions/checkout@v6.0.1
75+
- uses: actions/checkout@v6.0.2
7676
- name: Install cibuildwheel
7777
# Nb. keep cibuildwheel version pin consistent with job below
7878
run: pipx install cibuildwheel==3.3.0
@@ -105,23 +105,23 @@ jobs:
105105

106106
steps:
107107
- name: Check out the repo
108-
uses: actions/checkout@v6.0.1
108+
uses: actions/checkout@v6.0.2
109109

110110
- name: Set up QEMU
111111
if: runner.os == 'Linux'
112-
uses: docker/setup-qemu-action@v3
112+
uses: docker/setup-qemu-action@v4
113113
with:
114114
platforms: all
115115

116116
- name: Build wheels
117-
uses: pypa/cibuildwheel@v3.3.0
117+
uses: pypa/cibuildwheel@v3.4.1
118118
with:
119119
only: ${{ matrix.only }}
120120

121121
- name: Build faster Linux wheels
122122
# also build wheels with the most recent manylinux images and gcc
123123
if: runner.os == 'Linux' && !contains(matrix.only, 'i686')
124-
uses: pypa/cibuildwheel@v3.3.0
124+
uses: pypa/cibuildwheel@v3.4.1
125125
env:
126126
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_34
127127
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_34 # manylinux_2_39 ?
@@ -138,7 +138,7 @@ jobs:
138138
with:
139139
only: ${{ matrix.only }}
140140

141-
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
141+
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
142142
with:
143143
path: ./wheelhouse/*.whl
144144
name: wheels-${{ matrix.only }}
@@ -150,7 +150,7 @@ jobs:
150150

151151
steps:
152152
- name: Merge wheels
153-
uses: actions/upload-artifact/merge@v6
153+
uses: actions/upload-artifact/merge@v7
154154
with:
155155
name: all_wheels
156156
pattern: wheels-*
@@ -168,10 +168,10 @@ jobs:
168168

169169
steps:
170170
- name: Check out the repo
171-
uses: actions/checkout@v6.0.1
171+
uses: actions/checkout@v6.0.2
172172

173173
- name: Download files
174-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
174+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
175175
with:
176176
path: ./dist_downloads
177177
merge-multiple: true

0 commit comments

Comments
 (0)