Skip to content

Commit a7a2c11

Browse files
authored
feat!: update action to use node24 (#1632)
1 parent 6e3375d commit a7a2c11

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: '"Configure AWS Credentials" Action for GitHub Actions'
33
description: Configures AWS credentials for use in subsequent steps in a GitHub Action workflow
44
runs:
5-
using: node20
5+
using: node24
66
main: dist/index.js
77
post: dist/cleanup/index.js
88
branding:
@@ -70,7 +70,7 @@ inputs:
7070
output-env-credentials:
7171
description: Whether to export credentials as environment variables. If you set this to false, you probably want to use output-credentials.
7272
required: false
73-
default: true
73+
default: "true"
7474
unset-current-credentials:
7575
description: Whether to unset the existing credentials in your runner. May be useful if you run this action multiple times in the same job
7676
required: false

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"github-action"
4444
],
4545
"engines": {
46-
"node": ">= 14.0.0"
46+
"node": ">= 16.3.0"
4747
},
4848
"main": "build/index.js",
4949
"license": "MIT",

0 commit comments

Comments
 (0)