Skip to content

Commit bf79f10

Browse files
Bump the actions group across 1 directory with 3 updates (#91)
Bumps the actions group with 3 updates in the / directory: [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 `pypa/cibuildwheel` from 3.2.1 to 3.3.0 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@9c00cb4...63fd63b) 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: pypa/cibuildwheel dependency-version: 3.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f999d0e commit bf79f10

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/dist.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232
name: Build CPython-${{ matrix.os }}
3333
steps:
3434
- uses: actions/checkout@v5
35-
- uses: pypa/cibuildwheel@9c00cb4f6b517705a3794b22395aedc36257242c # v3.13.3
36-
- uses: actions/upload-artifact@v4
35+
- uses: pypa/cibuildwheel@63fd63b352a9a8bdcc24791c9dbee952ee9a8abc # v3.13.3
36+
- uses: actions/upload-artifact@v5
3737
with:
3838
name: ${{ matrix.os }}-wheel
3939
path: ./wheelhouse/*.whl
@@ -51,7 +51,7 @@ jobs:
5151
run: |
5252
python -m pip install build
5353
python -m build --sdist
54-
- uses: actions/upload-artifact@v4
54+
- uses: actions/upload-artifact@v5
5555
with:
5656
name: "sdist"
5757
path: dist/*.tar.gz
@@ -61,13 +61,13 @@ jobs:
6161
name: Download Wheels
6262
steps:
6363
- name: Download all workflow run artifacts
64-
uses: actions/download-artifact@v5
64+
uses: actions/download-artifact@v6
6565
- name: Flatten directory
6666
working-directory: .
6767
run: |
6868
find . -mindepth 2 -type f -exec mv {} . \;
6969
find . -type d -empty -delete
70-
- uses: actions/upload-artifact@v4
70+
- uses: actions/upload-artifact@v5
7171
with:
7272
name: all-dist-${{ github.run_id }}
7373
path: "./*"

.github/workflows/release-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
id-token: write
7474
steps:
7575
- name: Download all the dists
76-
uses: actions/download-artifact@v5
76+
uses: actions/download-artifact@v6
7777
with:
7878
name: all-dist-${{ github.run_id }}
7979
path: dist/

0 commit comments

Comments
 (0)