Skip to content

Commit 8eea44e

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 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent e652579 commit 8eea44e

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/cibuildwheel.yml

Lines changed: 5 additions & 5 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@v5
41+
- uses: actions/upload-artifact@v6
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@v5
92+
- uses: actions/upload-artifact@v6
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@v5
135+
- uses: actions/upload-artifact@v6
136136
with:
137137
name: pypi-artifacts-${{ matrix.os }}-${{ matrix.arch }}
138138
path: ${{ github.workspace }}/wheelhouse/*.whl
@@ -143,7 +143,7 @@ jobs:
143143
name: "Show artifacts"
144144
runs-on: ubuntu-22.04
145145
steps:
146-
- uses: actions/download-artifact@v6
146+
- uses: actions/download-artifact@v7
147147
with:
148148
pattern: pypi-artifacts*
149149
path: ${{ github.workspace }}/dist
@@ -161,7 +161,7 @@ jobs:
161161
# upload to PyPI for every tag starting with 'v'
162162
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
163163
steps:
164-
- uses: actions/download-artifact@v6
164+
- uses: actions/download-artifact@v7
165165
with:
166166
pattern: pypi-artifacts*
167167
path: ${{ github.workspace }}/dist

0 commit comments

Comments
 (0)