Skip to content

Commit 4322b48

Browse files
committed
GH Actions: bump actions/download-artifact to v8 (was v5)
Since v7, the action runs on Node.js 24 - see https://github.com/actions/download-artifact/releases/tag/v7.0.0 [v8](https://github.com/actions/download-artifact/blob/70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3/README.md#v8---whats-new) will fail if the download hash doesn't match the expected hash and this is stated as a "breaking" change in https://github.com/actions/download-artifact/releases/tag/v8.0.0 Personally, I see this as an improvement, not a "breaking change" in the traditional sense, because it doesn't break anything legitimate that worked in the previous version.
1 parent 774ba23 commit 4322b48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
id-token: write
4747
steps:
4848
- name: Download all the dists
49-
uses: actions/download-artifact@v5
49+
uses: actions/download-artifact@v8
5050
with:
5151
name: python-package-distributions
5252
path: dist/
@@ -69,7 +69,7 @@ jobs:
6969
id-token: write # IMPORTANT: mandatory for trusted publishing
7070
steps:
7171
- name: Download all the dists
72-
uses: actions/download-artifact@v5
72+
uses: actions/download-artifact@v8
7373
with:
7474
name: python-package-distributions
7575
path: dist/

0 commit comments

Comments
 (0)