Skip to content

Commit ffa1db7

Browse files
Bump the github-actions group with 2 updates
Bumps the github-actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v7...v8) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0ca099e commit ffa1db7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
pip install build
3939
&& python -m build --sdist . --outdir dist
4040
41-
- uses: actions/upload-artifact@v6
41+
- uses: actions/upload-artifact@v7
4242
with:
4343
name: pypi-artifacts
4444
path: ${{ github.workspace }}/dist/*.tar.gz
@@ -89,7 +89,7 @@ jobs:
8989
env:
9090
CIBW_ARCHS: ${{ matrix.arch }}
9191

92-
- uses: actions/upload-artifact@v6
92+
- uses: actions/upload-artifact@v7
9393
with:
9494
name: pypi-artifacts-${{ matrix.os }}-${{ matrix.arch }}
9595
path: ${{ github.workspace }}/wheelhouse/*.whl
@@ -132,7 +132,7 @@ jobs:
132132
env:
133133
CIBW_ARCHS: ${{ matrix.arch }}
134134

135-
- uses: actions/upload-artifact@v6
135+
- uses: actions/upload-artifact@v7
136136
with:
137137
name: pypi-artifacts-${{ matrix.os }}-${{ matrix.arch }}
138138
path: ${{ github.workspace }}/wheelhouse/*.whl
@@ -172,7 +172,7 @@ jobs:
172172
CIBW_ARCHS: ARM64
173173
CIBW_SKIP: "cp310-*"
174174

175-
- uses: actions/upload-artifact@v6
175+
- uses: actions/upload-artifact@v7
176176
with:
177177
name: pypi-artifacts-windows-11-arm-ARM64
178178
path: ${{ github.workspace }}/wheelhouse/*.whl
@@ -183,7 +183,7 @@ jobs:
183183
name: "Show artifacts"
184184
runs-on: ubuntu-22.04
185185
steps:
186-
- uses: actions/download-artifact@v7
186+
- uses: actions/download-artifact@v8
187187
with:
188188
pattern: pypi-artifacts*
189189
path: ${{ github.workspace }}/dist
@@ -201,7 +201,7 @@ jobs:
201201
# upload to PyPI for every tag starting with 'v'
202202
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
203203
steps:
204-
- uses: actions/download-artifact@v7
204+
- uses: actions/download-artifact@v8
205205
with:
206206
pattern: pypi-artifacts*
207207
path: ${{ github.workspace }}/dist

0 commit comments

Comments
 (0)