Skip to content

Commit

Permalink
Revert "chore!: require nodejs 16 (#218)" (#242)
Browse files Browse the repository at this point in the history
This reverts commit ae37ad0.
  • Loading branch information
sethvargo authored Mar 8, 2022
1 parent 93da55c commit a1969c6
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-appengine-creds-it.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ jobs:
- uses: 'actions/setup-node@v2'
with:
node-version: '16.x'
node-version: '12.x'

- id: build
name: Build dist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-appengine-inputs-it.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/setup-node@master
with:
node-version: '16.x'
node-version: 12.x
- id: build
name: Build dist
run: |-
Expand Down
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: '16.x'
node-version: '12.x'

- name: 'npm build'
run: 'npm ci && npm run build'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

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

- name: 'npm build'
run: 'npm ci && npm run build'
Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ inputs:
flags:
description: |-
Space separated list of other App Engine flags, examples can be found:
https://cloud.google.com/sdk/gcloud/reference/app/deploy#FLAGS. Ex
https://cloud.google.com/sdk/gcloud/reference/app/deploy#FLAGS. Ex
[email protected] --no-cache
required: false

Expand All @@ -73,5 +73,5 @@ outputs:
description: URL of your App Engine Application

runs:
using: 'node16'
main: 'dist/index.js'
using: node12
main: dist/index.js
6 changes: 3 additions & 3 deletions example-app/app.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Copyright 2020 Google, LLC.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
Expand All @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

runtime: nodejs16
runtime: nodejs12

0 comments on commit a1969c6

Please sign in to comment.