Skip to content

Commit 365550a

Browse files
Bump the actions group with 4 updates (#70)
Bumps the actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) 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/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) Updates `actions/download-artifact` from 4 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' 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/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Eric Larson <larson.eric.d@gmail.com>
1 parent 1ad1628 commit 365550a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build_wheels.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
arch: aarch64
4141
python: "pp3{10,11}"
4242
steps:
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v6
4444
with:
4545
submodules: true
4646
# Linux emulation for aarch64 support
@@ -49,11 +49,11 @@ jobs:
4949
with:
5050
platforms: all
5151
if: runner.os == 'Linux' && matrix.arch == 'aarch64'
52-
- uses: pypa/cibuildwheel@v3.3.0
52+
- uses: pypa/cibuildwheel@v3.3.1
5353
env:
5454
CIBW_ARCHS: "${{ matrix.arch }}"
5555
CIBW_BUILD: "${{ matrix.python }}-*"
56-
- uses: actions/upload-artifact@v4
56+
- uses: actions/upload-artifact@v6
5757
with:
5858
name: cibw-wheels-${{ matrix.os }}-${{ matrix.arch}}-${{ strategy.job-index }}
5959
path: ./wheelhouse/*.whl
@@ -64,9 +64,9 @@ jobs:
6464
name: Make SDist
6565
runs-on: ubuntu-latest
6666
steps:
67-
- uses: actions/checkout@v4
67+
- uses: actions/checkout@v6
6868
- run: pipx run build --sdist
69-
- uses: actions/upload-artifact@v4
69+
- uses: actions/upload-artifact@v6
7070
with:
7171
name: cibw-sdist
7272
path: dist/*.tar.gz
@@ -82,7 +82,7 @@ jobs:
8282
id-token: write
8383
runs-on: ubuntu-latest
8484
steps:
85-
- uses: actions/download-artifact@v4
85+
- uses: actions/download-artifact@v7
8686
with:
8787
pattern: cibw-*
8888
path: dist

0 commit comments

Comments
 (0)