1
0
mirror of https://github.com/actions/download-artifact.git synced 2025-12-12 20:57:50 +01:00

chore: release v7.0.0 for Node.js 24 support

- Update to Node.js 24 runtime (runs.using: node24)
- Bump version to 7.0.0
- Update README with v7 release notes
- Rebuild dist
This commit is contained in:
Salman Muin Kayser Chishti
2025-12-12 17:28:48 +00:00
parent fd7ae8fda6
commit 0d2ec9d4cb
3 changed files with 13 additions and 3 deletions

View File

@@ -5,6 +5,7 @@ Download [Actions Artifacts](https://docs.github.com/en/actions/using-workflows/
See also [upload-artifact](https://github.com/actions/upload-artifact).
- [`@actions/download-artifact`](#actionsdownload-artifact)
- [v7 - What's new](#v7---whats-new)
- [v5 - What's new](#v5---whats-new)
- [v4 - What's new](#v4---whats-new)
- [Improvements](#improvements)
@@ -22,6 +23,15 @@ See also [upload-artifact](https://github.com/actions/upload-artifact).
- [Limitations](#limitations)
- [Permission Loss](#permission-loss)
## v7 - What's new
> [!IMPORTANT]
> actions/download-artifact@v7 now runs on Node.js 24 (`runs.using: node24`) and requires a minimum Actions Runner version of 2.327.1. If you are using self-hosted runners, ensure they are updated before upgrading.
### Node.js 24
This release updates the runtime to Node.js 24. v5 had preliminary support for Node 24, however this action was by default still running on Node.js 20. Now this action by default will run on Node.js 24.
## v5 - What's new
Previously, **single artifact downloads** behaved differently depending on how you specified the artifact:

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "download-artifact",
"version": "6.0.0",
"version": "7.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "download-artifact",
"version": "6.0.0",
"version": "7.0.0",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^5.0.0",

View File

@@ -1,6 +1,6 @@
{
"name": "download-artifact",
"version": "6.0.0",
"version": "7.0.0",
"description": "Download an Actions Artifact from a workflow run",
"engines": {
"node": ">=24"