Skip to content

Commit eb532b6

Browse files
authored
Bump to Node 24 (#76)
1 parent dfd6e1d commit eb532b6

File tree

6 files changed

+30
-25
lines changed

6 files changed

+30
-25
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"'

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454

5555
- id: 'auth'
5656
name: 'Auth'
57-
uses: 'google-github-actions/auth@v2' # ratchet:exclude
57+
uses: 'google-github-actions/auth@v3' # ratchet:exclude
5858
with:
5959
workload_identity_provider: '${{ vars.WIF_PROVIDER_NAME }}'
6060
service_account: '${{ vars.SERVICE_ACCOUNT_EMAIL }}'

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ support](https://cloud.google.com/support).**
1717
the secrets being requested. See [Authorization](#authorization) for more
1818
information.
1919

20-
- This action runs using Node 20. If you are using self-hosted GitHub Actions
20+
- This action runs using Node 24. If you are using self-hosted GitHub Actions
2121
runners, you must use runner version
2222
[2.285.0](https://github.com/actions/virtual-environments) or newer.
2323

@@ -39,13 +39,13 @@ jobs:
3939
steps:
4040
- uses: 'actions/checkout@v4'
4141

42-
- uses: 'google-github-actions/auth@v2'
42+
- uses: 'google-github-actions/auth@v3'
4343
with:
4444
workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider'
4545
service_account: '[email protected]'
4646

4747
- id: create-release
48-
uses: 'google-github-actions/create-cloud-deploy-release@v1'
48+
uses: 'google-github-actions/create-cloud-deploy-release@v2'
4949
with:
5050
name: 'demo-app-v1-2-3'
5151
description: 'Add new functionality to demo-app'
@@ -194,12 +194,12 @@ jobs:
194194
195195
# ...
196196
197-
- uses: 'google-github-actions/auth@v2'
197+
- uses: 'google-github-actions/auth@v3'
198198
with:
199199
workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider'
200200
service_account: '[email protected]'
201201
202-
- uses: 'google-github-actions/create-cloud-deploy-release@v1'
202+
- uses: 'google-github-actions/create-cloud-deploy-release@v2'
203203
with:
204204
name: 'example-app'
205205
...
@@ -218,7 +218,7 @@ jobs:
218218
steps:
219219
# ...
220220
221-
- uses: 'google-github-actions/create-cloud-deploy-release@v1'
221+
- uses: 'google-github-actions/create-cloud-deploy-release@v2'
222222
with:
223223
name: 'example-app'
224224
...

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,5 +125,5 @@ branding:
125125
color: 'blue'
126126

127127
runs:
128-
using: 'node20'
128+
using: 'node24'
129129
main: 'dist/main/index.js'

package-lock.json

Lines changed: 14 additions & 14 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
@@ -11,7 +11,7 @@
1111
"e2e-tests": "node --require ts-node/register --test-reporter spec --test ./tests/e2e.test.ts"
1212
},
1313
"engines": {
14-
"node": ">= 20.x",
14+
"node": ">= 24.x",
1515
"npm": ">= 11.x"
1616
},
1717
"repository": {
@@ -38,8 +38,8 @@
3838
"@actions/core": "^1.11.1",
3939
"@actions/exec": "^1.1.1",
4040
"@actions/tool-cache": "^2.0.2",
41-
"@google-github-actions/actions-utils": "^0.8.10",
42-
"@google-github-actions/setup-cloud-sdk": "^1.2.3",
41+
"@google-github-actions/actions-utils": "^1.0.1",
42+
"@google-github-actions/setup-cloud-sdk": "^2.0.0",
4343
"js-yaml": "^4.1.0"
4444
},
4545
"devDependencies": {

0 commit comments

Comments
 (0)