Skip to content

Commit 5ea4dc1

Browse files
authored
Bump to Node 24 and remove old parameters (#508)
1 parent c200f36 commit 5ea4dc1

File tree

4 files changed

+17
-36
lines changed

4 files changed

+17
-36
lines changed

.github/actionlint.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
paths:
2+
'**/*.yml':
3+
ignore:
4+
# https://github.com/rhysd/actionlint/issues/559
5+
- 'invalid runner name "node24"'

action.yml

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -138,30 +138,6 @@ inputs:
138138
default: ''
139139
required: false
140140

141-
# retries - TODO - remove in v3.0
142-
retries:
143-
description: |-
144-
Number of times to retry a failed authentication attempt. This is useful
145-
for automated pipelines that may execute before IAM permissions are fully
146-
propagated.
147-
deprecationMessage: |-
148-
This field is no longer used and will be removed in a future release.
149-
required: false
150-
backoff:
151-
description: |-
152-
Delay time before trying another authentication attempt. This is
153-
implemented using a fibonacci backoff method (e.g. 1-1-2-3-5). The default
154-
value is 250 milliseconds.
155-
deprecationMessage: |-
156-
This field is no longer used and will be removed in a future release.
157-
required: false
158-
backoff_limit:
159-
description: |-
160-
Limits the retry backoff to the specified value.
161-
deprecationMessage: |-
162-
This field is no longer used and will be removed in a future release.
163-
required: false
164-
165141
# id token params
166142
id_token_audience:
167143
description: |-
@@ -204,6 +180,6 @@ branding:
204180
color: 'blue'
205181

206182
runs:
207-
using: 'node20'
183+
using: 'node24'
208184
main: 'dist/main/index.js'
209185
post: 'dist/post/index.js'

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"test": "bash ./bin/runTests.sh"
1111
},
1212
"engines": {
13-
"node": ">= 20.x",
14-
"npm": ">= 10.x"
13+
"node": ">= 24.x",
14+
"npm": ">= 11.x"
1515
},
1616
"repository": {
1717
"type": "git",
@@ -29,7 +29,7 @@
2929
"dependencies": {
3030
"@actions/core": "^1.11.1",
3131
"@actions/http-client": "^2.2.3",
32-
"@google-github-actions/actions-utils": "^0.8.10"
32+
"@google-github-actions/actions-utils": "^1.0.1"
3333
},
3434
"devDependencies": {
3535
"@eslint/eslintrc": "^3.3.1",

0 commit comments

Comments
 (0)