Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: switch to node16 #524

Merged
merged 2 commits into from
Mar 4, 2022
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,6 @@ inputs:
required: false

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