From 0d2ec9d4cbcefe257d822f108de2a1f15f8da9f6 Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti Date: Fri, 12 Dec 2025 17:28:48 +0000 Subject: [PATCH 1/2] 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 --- README.md | 10 ++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 50fac66..ec756ca 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/package-lock.json b/package-lock.json index fef09e1..cb2a494 100644 --- a/package-lock.json +++ b/package-lock.json @@ -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", diff --git a/package.json b/package.json index 7c87fcb..1c9aede 100644 --- a/package.json +++ b/package.json @@ -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" From 72582b9e0acd370909e83fa4a1fd0fca3ad452d8 Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti Date: Fri, 12 Dec 2025 17:39:35 +0000 Subject: [PATCH 2/2] doc: update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ec756ca..289b652 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ See also [upload-artifact](https://github.com/actions/upload-artifact). ### 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. +This release updates the runtime to Node.js 24. v6 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