Skip to content

Commit 3d077ca

Browse files
Build: Bump the github-actions group across 1 directory with 3 updates
Bumps the github-actions group with 3 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact), [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `pypa/cibuildwheel` from 3.1.4 to 3.2.1 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v3.1.4...v3.2.1) Updates `actions/download-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@634f93c...018cc2c) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/cibuildwheel dependency-version: 3.2.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 452a982 commit 3d077ca

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: make sdist
4141

4242
- name: Archive sdist
43-
uses: actions/upload-artifact@v4
43+
uses: actions/upload-artifact@v5
4444
with:
4545
name: sdist
4646
path: dist/*.tar.gz
@@ -153,7 +153,7 @@ jobs:
153153
run: cp -v wheelhouse*/*-m*linux*.whl dist/ # manylinux / musllinux
154154

155155
- name: Archive Wheels
156-
uses: actions/upload-artifact@v4
156+
uses: actions/upload-artifact@v5
157157
with:
158158
name: wheels-${{ matrix.image }}-${{ matrix.pyversion }}
159159
path: dist/*.whl
@@ -204,7 +204,7 @@ jobs:
204204
run: make testslow
205205

206206
- name: Upload wheels
207-
uses: actions/upload-artifact@v4
207+
uses: actions/upload-artifact@v5
208208
with:
209209
name: wheels-${{ matrix.os }}-${{ matrix.python-version }}
210210
path: dist/*.whl
@@ -225,7 +225,7 @@ jobs:
225225

226226
steps:
227227
- name: Merge wheels
228-
uses: actions/upload-artifact/merge@v4
228+
uses: actions/upload-artifact/merge@v5
229229
with:
230230
name: all_wheels
231231
pattern: wheels-*

.github/workflows/wheels.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: make sdist
5959

6060
- name: Upload sdist
61-
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
61+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
6262
with:
6363
name: sdist
6464
path: dist/*.tar.gz
@@ -114,14 +114,14 @@ jobs:
114114
platforms: all
115115

116116
- name: Build wheels
117-
uses: pypa/cibuildwheel@v3.1.4
117+
uses: pypa/cibuildwheel@v3.2.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.1.4
124+
uses: pypa/cibuildwheel@v3.2.1
125125
env:
126126
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_34
127127
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_34 # manylinux_2_39 ?
@@ -137,7 +137,7 @@ jobs:
137137
with:
138138
only: ${{ matrix.only }}
139139

140-
- uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
140+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
141141
with:
142142
path: ./wheelhouse/*.whl
143143
name: wheels-${{ matrix.only }}
@@ -149,7 +149,7 @@ jobs:
149149

150150
steps:
151151
- name: Merge wheels
152-
uses: actions/upload-artifact/merge@v4
152+
uses: actions/upload-artifact/merge@v5
153153
with:
154154
name: all_wheels
155155
pattern: wheels-*
@@ -170,7 +170,7 @@ jobs:
170170
uses: actions/checkout@v5
171171

172172
- name: Download files
173-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
173+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
174174
with:
175175
path: ./dist_downloads
176176
merge-multiple: true

0 commit comments

Comments
 (0)