Skip to content

Commit de314fb

Browse files
Bump the actions group with 2 updates
Bumps the 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: 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]>
1 parent f999d0e commit de314fb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/dist.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
steps:
3434
- uses: actions/checkout@v5
3535
- uses: pypa/cibuildwheel@9c00cb4f6b517705a3794b22395aedc36257242c # v3.13.3
36-
- uses: actions/upload-artifact@v4
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)