From a7a2c1125c67f40a1e95768f4e4a7d8f019f87af Mon Sep 17 00:00:00 2001 From: Tom Keller <1083460+kellertk@users.noreply.github.com> Date: Wed, 28 Jan 2026 13:49:29 -0800 Subject: [PATCH] feat!: update action to use node24 (#1632) --- action.yml | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 4d7acf3..c781b4a 100644 --- a/action.yml +++ b/action.yml @@ -2,7 +2,7 @@ name: '"Configure AWS Credentials" Action for GitHub Actions' description: Configures AWS credentials for use in subsequent steps in a GitHub Action workflow runs: - using: node20 + using: node24 main: dist/index.js post: dist/cleanup/index.js branding: @@ -70,7 +70,7 @@ inputs: output-env-credentials: description: Whether to export credentials as environment variables. If you set this to false, you probably want to use output-credentials. required: false - default: true + default: "true" unset-current-credentials: description: Whether to unset the existing credentials in your runner. May be useful if you run this action multiple times in the same job required: false diff --git a/package.json b/package.json index a464d1c..b84f0b8 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "github-action" ], "engines": { - "node": ">= 14.0.0" + "node": ">= 16.3.0" }, "main": "build/index.js", "license": "MIT",