Skip to content

Commit 083d444

Browse files
authored
Update deps to Node 20 (#59)
1 parent f9c43a8 commit 083d444

File tree

9 files changed

+333
-313
lines changed

9 files changed

+333
-313
lines changed

.github/workflows/unit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525
runs-on: '${{ matrix.os }}'
2626

2727
steps:
28-
- uses: 'actions/checkout@v3'
28+
- uses: 'actions/checkout@v4'
2929

3030
- uses: 'actions/setup-node@v3'
3131
with:
32-
node-version: '16.x'
32+
node-version: '20.x'
3333

3434
- name: 'npm build'
3535
run: 'npm ci && npm run build'

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ jobs:
3737
id-token: 'write'
3838

3939
steps:
40-
- uses: 'actions/checkout@v2'
40+
- uses: 'actions/checkout@v4'
4141

4242
- id: 'auth'
43-
uses: 'google-github-actions/auth@v0'
43+
uses: 'google-github-actions/auth@v1'
4444
with:
4545
workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider'
4646
service_account: '[email protected]'
@@ -101,10 +101,10 @@ jobs:
101101
id-token: 'write'
102102
103103
steps:
104-
- uses: 'actions/checkout@v3'
104+
- uses: 'actions/checkout@v4'
105105
106106
- id: 'auth'
107-
uses: 'google-github-actions/auth@v0'
107+
uses: 'google-github-actions/auth@v1'
108108
with:
109109
workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider'
110110
service_account: '[email protected]'
@@ -124,10 +124,10 @@ jobs:
124124
jobs:
125125
job_id:
126126
steps:
127-
- uses: 'actions/checkout@v3'
127+
- uses: 'actions/checkout@v4'
128128
129129
- id: 'auth'
130-
uses: 'google-github-actions/auth@v0'
130+
uses: 'google-github-actions/auth@v1'
131131
with:
132132
credentials_json: '${{ secrets.gcp_credentials }}'
133133
@@ -151,7 +151,7 @@ only works using a custom runner hosted on GCP.**
151151
jobs:
152152
job_id:
153153
steps:
154-
- uses: 'actions/checkout@v2'
154+
- uses: 'actions/checkout@v4'
155155
156156
- id: 'compute-ssh'
157157
uses: 'google-github-actions/ssh-compute@v0'

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ inputs:
3030

3131
user:
3232
description: |-
33-
Specifies the username with which to SSH.
33+
Specifies the username with which to SSH.
3434
If omitted, the user login name is used. If using OS Login, USER will be replaced by the OS Login user.
3535
required: false
3636

@@ -47,7 +47,7 @@ inputs:
4747
container:
4848
description: |-
4949
The name or ID of a container inside of the virtual machine instance to connect to.
50-
This only applies to virtual machines that are using a Google Container-Optimized
50+
This only applies to virtual machines that are using a Google Container-Optimized
5151
virtual machine image.
5252
required: false
5353

@@ -77,7 +77,7 @@ inputs:
7777
flags:
7878
description: |-
7979
Space separated list of other compute ssh flags, examples can be found:
80-
https://cloud.google.com/sdk/gcloud/reference/compute/ssh/#FLAGS. Ex
80+
https://cloud.google.com/sdk/gcloud/reference/compute/ssh/#FLAGS. Ex
8181
--ssh-key-expiration=2017-08-29T18:52:51.142Z.
8282
required: false
8383

@@ -106,6 +106,6 @@ branding:
106106
color: 'blue'
107107

108108
runs:
109-
using: 'node16'
109+
using: 'node20'
110110
main: 'dist/main/index.js'
111111
post: 'dist/post/index.js'

dist/main/index.js

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

dist/post/index.js

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

0 commit comments

Comments
 (0)