Skip to content

Commit

Permalink
feat: switch to node16 (#524)
Browse files Browse the repository at this point in the history
* feat: switch to node16

* use an updated gcloud version
  • Loading branch information
bharathkkb committed Mar 4, 2022
1 parent 04141d8 commit c66a06c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -16,7 +16,7 @@ jobs:

- uses: 'actions/setup-node@v2'
with:
node-version: '12.x'
node-version: '16.x'

- name: 'npm build'
run: 'npm ci && npm run build'
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/setup-gcloud-it.yml
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v2
- uses: "actions/setup-node@v2"
with:
node-version: "12.x"
node-version: "16.x"
- id: build
name: Build dist
run: |-
Expand All @@ -34,7 +34,7 @@ jobs:
- name: setup-gcloud
uses: ./
with:
version: "290.0.1"
version: "374.0.0"
service_account_key: ${{ secrets.SETUP_GCLOUD_IT_KEY }}

- name: Integration Tests
Expand All @@ -53,7 +53,7 @@ jobs:
- uses: actions/checkout@v2
- uses: "actions/setup-node@v2"
with:
node-version: "12.x"
node-version: "16.x"
- name: Build dependency
run: |-
npm ci
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
- uses: actions/checkout@v2
- uses: "actions/setup-node@v2"
with:
node-version: "12.x"
node-version: "16.x"
- id: build
name: Build dist
run: |-
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
- uses: actions/checkout@v2
- uses: "actions/setup-node@v2"
with:
node-version: "12.x"
node-version: "16.x"

- id: build
name: Build dist
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:

- uses: "actions/setup-node@v2"
with:
node-version: "12.x"
node-version: "16.x"

- name: "npm ci"
run: "npm ci"
Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:

- uses: "actions/setup-node@v2"
with:
node-version: "12.x"
node-version: "16.x"

- id: build
name: Build dist
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:

- uses: "actions/setup-node@v2"
with:
node-version: "12.x"
node-version: "16.x"

- id: build
name: Build dist
Expand Down Expand Up @@ -320,7 +320,7 @@ jobs:

- uses: "actions/setup-node@v2"
with:
node-version: "12.x"
node-version: "16.x"

- id: "build"
name: "Build dist"
Expand Down Expand Up @@ -360,7 +360,7 @@ jobs:

- uses: "actions/setup-node@v2"
with:
node-version: "12.x"
node-version: "16.x"

- id: build
name: Build dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/setup-gcloud.yml
Expand Up @@ -26,7 +26,7 @@ jobs:

- uses: 'actions/setup-node@v2'
with:
node-version: '12.x'
node-version: '16.x'

- name: 'npm ci'
run: 'npm ci'
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -80,6 +80,6 @@ inputs:
required: false

runs:
using: 'node12'
using: 'node16'
main: 'dist/main/index.js'
post: 'dist/post/index.js'

0 comments on commit c66a06c

Please sign in to comment.