Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/actionlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
paths:
'**/*.yml':
ignore:
# https://github.com/rhysd/actionlint/issues/559
- 'invalid runner name "node24"'
26 changes: 1 addition & 25 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,30 +138,6 @@ inputs:
default: ''
required: false

# retries - TODO - remove in v3.0
retries:
description: |-
Number of times to retry a failed authentication attempt. This is useful
for automated pipelines that may execute before IAM permissions are fully
propagated.
deprecationMessage: |-
This field is no longer used and will be removed in a future release.
required: false
backoff:
description: |-
Delay time before trying another authentication attempt. This is
implemented using a fibonacci backoff method (e.g. 1-1-2-3-5). The default
value is 250 milliseconds.
deprecationMessage: |-
This field is no longer used and will be removed in a future release.
required: false
backoff_limit:
description: |-
Limits the retry backoff to the specified value.
deprecationMessage: |-
This field is no longer used and will be removed in a future release.
required: false

# id token params
id_token_audience:
description: |-
Expand Down Expand Up @@ -204,6 +180,6 @@ branding:
color: 'blue'

runs:
using: 'node20'
using: 'node24'
main: 'dist/main/index.js'
post: 'dist/post/index.js'
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"test": "bash ./bin/runTests.sh"
},
"engines": {
"node": ">= 20.x",
"npm": ">= 10.x"
"node": ">= 24.x",
"npm": ">= 11.x"
},
"repository": {
"type": "git",
Expand All @@ -29,7 +29,7 @@
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/http-client": "^2.2.3",
"@google-github-actions/actions-utils": "^0.8.10"
"@google-github-actions/actions-utils": "^1.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
Expand Down
Loading