Skip to content

Commit b934bb6

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

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@v4
41+
- uses: actions/upload-artifact@v5
4242
with:
4343
name: pypi-artifacts
4444
path: ${{ github.workspace }}/dist/*.tar.gz
@@ -93,7 +93,7 @@ jobs:
9393
env:
9494
CIBW_ARCHS: ${{ matrix.arch }}
9595

96-
- uses: actions/upload-artifact@v4
96+
- uses: actions/upload-artifact@v5
9797
with:
9898
name: pypi-artifacts-${{ matrix.os }}-${{ matrix.arch }}
9999
path: ${{ github.workspace }}/wheelhouse/*.whl
@@ -130,7 +130,7 @@ jobs:
130130
env:
131131
CIBW_ARCHS: ${{ matrix.arch }}
132132

133-
- uses: actions/upload-artifact@v4
133+
- uses: actions/upload-artifact@v5
134134
with:
135135
name: pypi-artifacts-${{ matrix.os }}-${{ matrix.arch }}
136136
path: ${{ github.workspace }}/wheelhouse/*.whl
@@ -141,7 +141,7 @@ jobs:
141141
name: "Show artifacts"
142142
runs-on: ubuntu-22.04
143143
steps:
144-
- uses: actions/download-artifact@v5
144+
- uses: actions/download-artifact@v6
145145
with:
146146
pattern: pypi-artifacts*
147147
path: ${{ github.workspace }}/dist
@@ -159,7 +159,7 @@ jobs:
159159
# upload to PyPI for every tag starting with 'v'
160160
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
161161
steps:
162-
- uses: actions/download-artifact@v5
162+
- uses: actions/download-artifact@v6
163163
with:
164164
pattern: pypi-artifacts*
165165
path: ${{ github.workspace }}/dist

0 commit comments

Comments
 (0)