Skip to content

Commit 4031adb

Browse files
🦄 (deps): Bump pypa/cibuildwheel from 4.0.0 to 4.1.0 in the actions group (#333)
Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0f41ac0 commit 4031adb

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

‎.github/workflows/cd.yml‎

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
- name: Install MinGW compiler(s)
6868
run: choco install mingw
6969

70-
- uses: pypa/cibuildwheel@f03ac7617d6cff873ccf24cc0d567ef5ba5a9e6d # v4.0.0
70+
- uses: pypa/cibuildwheel@294735312765b09d24a2fbec22660ce817587d55 # v4.1.0
7171
with:
7272
package-dir: .
7373
output-dir: wheelhouse
@@ -107,7 +107,7 @@ jobs:
107107
- name: Build binary distribution (wheel) on Windows (arm64)
108108
# We need to use cibuildwheel because it has experimental support for cross-compiling
109109
# to arm64 and setup-python does not have arm64 support on Windows right now
110-
uses: pypa/cibuildwheel@f03ac7617d6cff873ccf24cc0d567ef5ba5a9e6d # v4.0.0
110+
uses: pypa/cibuildwheel@294735312765b09d24a2fbec22660ce817587d55 # v4.1.0
111111
with:
112112
package-dir: .
113113
output-dir: wheelhouse
@@ -145,7 +145,7 @@ jobs:
145145
"path=$crossFile" >> $env:GITHUB_OUTPUT
146146
147147
- name: Build binary distribution (wheel) on Windows (i686)
148-
uses: pypa/cibuildwheel@f03ac7617d6cff873ccf24cc0d567ef5ba5a9e6d # v4.0.0
148+
uses: pypa/cibuildwheel@294735312765b09d24a2fbec22660ce817587d55 # v4.1.0
149149
with:
150150
package-dir: .
151151
output-dir: wheelhouse
@@ -177,7 +177,7 @@ jobs:
177177
persist-credentials: false
178178
submodules: recursive
179179

180-
- uses: pypa/cibuildwheel@f03ac7617d6cff873ccf24cc0d567ef5ba5a9e6d # v4.0.0
180+
- uses: pypa/cibuildwheel@294735312765b09d24a2fbec22660ce817587d55 # v4.1.0
181181
with:
182182
package-dir: .
183183
output-dir: wheelhouse
@@ -205,7 +205,7 @@ jobs:
205205
persist-credentials: false
206206
submodules: recursive
207207

208-
- uses: pypa/cibuildwheel@f03ac7617d6cff873ccf24cc0d567ef5ba5a9e6d # v4.0.0
208+
- uses: pypa/cibuildwheel@294735312765b09d24a2fbec22660ce817587d55 # v4.1.0
209209
with:
210210
package-dir: .
211211
output-dir: wheelhouse
@@ -242,7 +242,7 @@ jobs:
242242
image: tonistiigi/binfmt:qemu-v8.1.5
243243

244244
- name: Build binary distribution (wheel) on Linux (s390x)
245-
uses: pypa/cibuildwheel@f03ac7617d6cff873ccf24cc0d567ef5ba5a9e6d # v4.0.0
245+
uses: pypa/cibuildwheel@294735312765b09d24a2fbec22660ce817587d55 # v4.1.0
246246
with:
247247
package-dir: .
248248
output-dir: wheelhouse
@@ -280,7 +280,7 @@ jobs:
280280
image: tonistiigi/binfmt:qemu-v8.1.5
281281

282282
- name: Build binary distribution (wheel) on Linux (ppc64le)
283-
uses: pypa/cibuildwheel@f03ac7617d6cff873ccf24cc0d567ef5ba5a9e6d # v4.0.0
283+
uses: pypa/cibuildwheel@294735312765b09d24a2fbec22660ce817587d55 # v4.1.0
284284
with:
285285
package-dir: .
286286
output-dir: wheelhouse
@@ -309,7 +309,7 @@ jobs:
309309
persist-credentials: false
310310
submodules: recursive
311311

312-
- uses: pypa/cibuildwheel@f03ac7617d6cff873ccf24cc0d567ef5ba5a9e6d # v4.0.0
312+
- uses: pypa/cibuildwheel@294735312765b09d24a2fbec22660ce817587d55 # v4.1.0
313313
with:
314314
package-dir: .
315315
output-dir: wheelhouse
@@ -337,7 +337,7 @@ jobs:
337337
persist-credentials: false
338338
submodules: recursive
339339

340-
- uses: pypa/cibuildwheel@f03ac7617d6cff873ccf24cc0d567ef5ba5a9e6d # v4.0.0
340+
- uses: pypa/cibuildwheel@294735312765b09d24a2fbec22660ce817587d55 # v4.1.0
341341
with:
342342
package-dir: .
343343
output-dir: wheelhouse

‎.github/workflows/ci.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
- name: Build binary distribution (wheel) on Windows (arm64)
158158
if: matrix.runs-on == 'windows-latest' && matrix.architecture == 'arm64'
159159
# TODO: FIXME: use windows-11-arm runners as they're available now, and drop this
160-
uses: pypa/cibuildwheel@f03ac7617d6cff873ccf24cc0d567ef5ba5a9e6d # v4.0.0
160+
uses: pypa/cibuildwheel@294735312765b09d24a2fbec22660ce817587d55 # v4.1.0
161161
with:
162162
package-dir: .
163163
output-dir: wheelhouse
@@ -173,7 +173,7 @@ jobs:
173173
# do not need to do that manually unless we use setup-python instead.
174174
- name: Build binary distribution (wheel) on Windows (i686)
175175
if: matrix.runs-on == 'windows-latest' && matrix.architecture == 'i686'
176-
uses: pypa/cibuildwheel@f03ac7617d6cff873ccf24cc0d567ef5ba5a9e6d # v4.0.0
176+
uses: pypa/cibuildwheel@294735312765b09d24a2fbec22660ce817587d55 # v4.1.0
177177
with:
178178
package-dir: .
179179
output-dir: wheelhouse

0 commit comments

Comments
 (0)