Skip to content

Commit a1969c6

Browse files
authored
Revert "chore!: require nodejs 16 (#218)" (#242)
This reverts commit ae37ad0.
1 parent 93da55c commit a1969c6

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/deploy-appengine-creds-it.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ jobs:
203203
204204
- uses: 'actions/setup-node@v2'
205205
with:
206-
node-version: '16.x'
206+
node-version: '12.x'
207207

208208
- id: build
209209
name: Build dist

.github/workflows/deploy-appengine-inputs-it.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ jobs:
6868
runs-on: ubuntu-latest
6969
steps:
7070
- uses: actions/checkout@v2
71-
- uses: actions/setup-node@v2
71+
- uses: actions/setup-node@master
7272
with:
73-
node-version: '16.x'
73+
node-version: 12.x
7474
- id: build
7575
name: Build dist
7676
run: |-

.github/workflows/release.yml

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

1717
- uses: 'actions/setup-node@v2'
1818
with:
19-
node-version: '16.x'
19+
node-version: '12.x'
2020

2121
- name: 'npm build'
2222
run: 'npm ci && npm run build'

.github/workflows/unit.yml

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

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

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

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ inputs:
6464
flags:
6565
description: |-
6666
Space separated list of other App Engine flags, examples can be found:
67-
https://cloud.google.com/sdk/gcloud/reference/app/deploy#FLAGS. Ex
67+
https://cloud.google.com/sdk/gcloud/reference/app/deploy#FLAGS. Ex
6868
[email protected] --no-cache
6969
required: false
7070

@@ -73,5 +73,5 @@ outputs:
7373
description: URL of your App Engine Application
7474

7575
runs:
76-
using: 'node16'
77-
main: 'dist/index.js'
76+
using: node12
77+
main: dist/index.js

example-app/app.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Copyright 2020 Google, LLC.
2-
#
2+
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
55
# You may obtain a copy of the License at
6-
#
6+
#
77
# http://www.apache.org/licenses/LICENSE-2.0
88
#
99
# Unless required by applicable law or agreed to in writing, software
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
runtime: nodejs16
15+
runtime: nodejs12

0 commit comments

Comments
 (0)