Skip to content

Commit 5a442a8

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 8ee8ec8 commit 5a442a8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
CIBW_SKIP: ${{ env.CIBW_SKIP }}
5959
CIBW_ARCHS: ${{ matrix.arch }}
6060

61-
- uses: actions/upload-artifact@v6
61+
- uses: actions/upload-artifact@v7
6262
with:
6363
name: pypi-artifacts-${{ matrix.os }}-${{ matrix.arch }}
6464
path: ${{ github.workspace }}/wheelhouse/*.whl
@@ -77,7 +77,7 @@ jobs:
7777
pip install build
7878
&& python -m build --sdist . --outdir dist
7979
80-
- uses: actions/upload-artifact@v6
80+
- uses: actions/upload-artifact@v7
8181
with:
8282
name: pypi-artifacts
8383
path: ${{ github.workspace }}/dist/*.tar.gz
@@ -87,7 +87,7 @@ jobs:
8787
name: "Show artifacts"
8888
runs-on: ubuntu-22.04
8989
steps:
90-
- uses: actions/download-artifact@v7
90+
- uses: actions/download-artifact@v8
9191
with:
9292
pattern: pypi-artifacts*
9393
path: ${{ github.workspace }}/dist
@@ -105,7 +105,7 @@ jobs:
105105
# upload to PyPI for every tag starting with 'v'
106106
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
107107
steps:
108-
- uses: actions/download-artifact@v7
108+
- uses: actions/download-artifact@v8
109109
with:
110110
pattern: pypi-artifacts*
111111
path: ${{ github.workspace }}/dist

0 commit comments

Comments
 (0)