Skip to content
This repository has been archived by the owner on Sep 4, 2023. It is now read-only.

Commit

Permalink
update to node 14
Browse files Browse the repository at this point in the history
  • Loading branch information
svozza committed Jun 7, 2021
1 parent 2771d76 commit 20bce02
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Set up Nodejs 12
- name: Set up Nodejs 14
uses: actions/setup-node@v1
with:
node-version: 12
node-version: 14
- name: Install dependencies
run: npm i
- name: Install python dependencies
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
aws-sam-translator==1.13.0
awscli==1.16.205
cfn_flip==1.1.0
cfn_lint==0.22.4
cfn_lint==0.50.0
yamllint==1.17.0
6 changes: 3 additions & 3 deletions src/cfn/template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Globals:
AllowHeaders: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'"
AllowOrigin: "'*'"
Function:
Runtime: nodejs10.x
Runtime: nodejs14.x
Environment:
Variables:
VERSION: '1.6'
Expand Down Expand Up @@ -271,8 +271,8 @@ Resources:
Description: Latest confirmed compatible AWS SDK
ContentUri: ../backend/functions/layers/aws_sdk/
CompatibleRuntimes:
- nodejs10.x
- nodejs12.x
- nodejs14.x

FPLayer:
Type: AWS::Serverless::LayerVersion
Expand All @@ -281,8 +281,8 @@ Resources:
Description: Layer containing functional programming libs
ContentUri: ../backend/functions/layers/fp/
CompatibleRuntimes:
- nodejs10.x
- nodejs12.x
- nodejs14.x

Orchestrator:
Type: AWS::Serverless::Function
Expand Down

0 comments on commit 20bce02

Please sign in to comment.