Skip to content

Commit 22dfe86

Browse files
Build(deps): Bump the actions group across 1 directory with 3 updates
Bumps the 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 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) Updates `pypa/cibuildwheel` from 3.3.0 to 3.3.1 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v3.3.0...v3.3.1) 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: actions - dependency-name: pypa/cibuildwheel dependency-version: 3.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 7f117d6 commit 22dfe86

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/wheels.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
fetch-depth: 0
2525
- name: Build sdist
2626
run: pipx run build -s
27-
- uses: actions/upload-artifact@v6
27+
- uses: actions/upload-artifact@v7
2828
with:
2929
name: source-dist
3030
path: ./dist/*.tar.gz
@@ -49,11 +49,11 @@ jobs:
4949
fetch-depth: 0
5050

5151
- name: Build wheel(s)
52-
uses: pypa/cibuildwheel@v3.3.0
52+
uses: pypa/cibuildwheel@v3.3.1
5353
env:
5454
CIBW_BUILD: "cp310-${{ matrix.buildplat[1] }} cp311-${{ matrix.buildplat[1] }} "
5555

56-
- uses: actions/upload-artifact@v6
56+
- uses: actions/upload-artifact@v7
5757
with:
5858
name: ${{ matrix.buildplat[1] }}-dist
5959
path: ./wheelhouse/*.whl
@@ -63,7 +63,7 @@ jobs:
6363
needs: [build-sdist]
6464
runs-on: ubuntu-latest
6565
steps:
66-
- uses: actions/download-artifact@v7
66+
- uses: actions/download-artifact@v8
6767
with:
6868
name: source-dist
6969
path: ./dist
@@ -84,7 +84,7 @@ jobs:
8484
runs-on: ubuntu-latest
8585
needs: [test-sdist, build-wheel]
8686
steps:
87-
- uses: actions/download-artifact@v7
87+
- uses: actions/download-artifact@v8
8888
with:
8989
path: dist/
9090
pattern: '*-dist'
@@ -98,7 +98,7 @@ jobs:
9898
needs: [pre-publish]
9999
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
100100
steps:
101-
- uses: actions/download-artifact@v7
101+
- uses: actions/download-artifact@v8
102102
with:
103103
path: dist/
104104
pattern: '*-dist'

0 commit comments

Comments
 (0)