From 615b319bd27bb32c3d64dca6b6ed6974d5fbe653 Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti Date: Fri, 12 Dec 2025 17:31:54 +0000 Subject: [PATCH 1/3] chore: release v6.0.0 for Node.js 24 support - Update to Node.js 24 runtime (runs.using: node24) - Bump version to 6.0.0 - Update README with v6 release notes - Rebuild dist --- README.md | 10 ++++++++++ package-lock.json | 5 +++-- package.json | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 19170e6..1c241b1 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ Upload [Actions Artifacts](https://docs.github.com/en/actions/using-workflows/st See also [download-artifact](https://github.com/actions/download-artifact). - [`@actions/upload-artifact`](#actionsupload-artifact) + - [v6 - What's new](#v6---whats-new) - [v4 - What's new](#v4---whats-new) - [Improvements](#improvements) - [Breaking Changes](#breaking-changes) @@ -38,6 +39,15 @@ See also [download-artifact](https://github.com/actions/download-artifact). - [Where does the upload go?](#where-does-the-upload-go) +## v6 - 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. v6 had preliminary support for Node.js 24, however this action was by default still running on Node.js 20. Now this action by default will run on Node.js 24. + ## v4 - What's new > [!IMPORTANT] diff --git a/package-lock.json b/package-lock.json index 80143d0..c92fb75 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "upload-artifact", - "version": "5.0.0", + "version": "6.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "upload-artifact", - "version": "5.0.0", + "version": "6.0.0", "license": "MIT", "dependencies": { "@actions/artifact": "^5.0.0", @@ -419,6 +419,7 @@ "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", diff --git a/package.json b/package.json index a9b8a1a..9cbe19e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "upload-artifact", - "version": "5.0.0", + "version": "6.0.0", "description": "Upload an Actions Artifact in a workflow run", "main": "dist/upload/index.js", "scripts": { From ddc45ed9bca9b38dbd643978d88e3981cdc91415 Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti Date: Fri, 12 Dec 2025 17:38:00 +0000 Subject: [PATCH 2/3] docs: update README to correct action name for Node.js 24 support --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1c241b1..69dffba 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ See also [download-artifact](https://github.com/actions/download-artifact). ## v6 - 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. +> actions/upload-artifact@v6 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 From e516bc8500aaf3d07d591fcd4ae6ab5f9c391d5b Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti Date: Fri, 12 Dec 2025 17:41:47 +0000 Subject: [PATCH 3/3] docs: correct description of Node.js 24 support in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 69dffba..7b535ee 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ See also [download-artifact](https://github.com/actions/download-artifact). ### Node.js 24 -This release updates the runtime to Node.js 24. v6 had preliminary support for Node.js 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. v5 had preliminary support for Node.js 24, however this action was by default still running on Node.js 20. Now this action by default will run on Node.js 24. ## v4 - What's new