Skip to content

Commit 3c50f87

Browse files
committed
bump Node.js version
1 parent 94091d1 commit 3c50f87

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616

1717
- name: yamlllint
1818
run: |
19-
pip install yamllint==1.26.0
19+
pip install yamllint==1.26.3
2020
yamllint module.yml && yamllint test/*.yml
2121
2222
- name: cfn-lint
2323
run: |
24-
pip install cfn-lint==0.44.7
24+
pip install cfn-lint==0.59.1
2525
cfn-lint -i W3002 -t module.yml && cfn-lint -t test/*.yml
2626
2727
- name: license

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Resources:
3434
Handler: 'example.handler' # required (file must be in the `lambda-src` folder)
3535
MemorySize: '128' # optional
3636
ReservedConcurrentExecutions: '-1' # optional
37-
Runtime: 'nodejs14.x' # required
37+
Runtime: 'nodejs16.x' # required
3838
Timeout: '3' # optional
3939
TracingConfigMode: PassThrough # optional
4040
LogGroupRetentionInDays: '14' # optional

test/defaults.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ Resources:
77
Properties:
88
Parameters:
99
Handler: 'defaults.handler'
10-
Runtime: 'nodejs14.x'
10+
Runtime: 'nodejs16.x'
1111
TemplateURL: './node_modules/@cfn-modules/lambda-function/module.yml'

test/layer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ Resources:
1818
Properties:
1919
Parameters:
2020
Handler: 'defaults.handler'
21-
Runtime: 'nodejs14.x'
21+
Runtime: 'nodejs16.x'
2222
LayerArns: !Ref Layer
2323
TemplateURL: './node_modules/@cfn-modules/lambda-function/module.yml'

test/named.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ Resources:
77
Properties:
88
Parameters:
99
Handler: 'defaults.handler'
10-
Runtime: 'nodejs14.x'
10+
Runtime: 'nodejs16.x'
1111
FunctionName: 'NamedLambda'
1212
TemplateURL: './node_modules/@cfn-modules/lambda-function/module.yml'

0 commit comments

Comments
 (0)