Skip to content

Commit 4ff61a5

Browse files
authored
chore: replace nodejs14.x with nodejs18.x (#3401)
1 parent 2287de7 commit 4ff61a5

File tree

232 files changed

+313
-313
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

232 files changed

+313
-313
lines changed

tests/translator/input/api_merge_definitions_global.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Resources:
3131
Type: AWS::Serverless::Function
3232
Properties:
3333
Handler: index.handler
34-
Runtime: nodejs14.x
34+
Runtime: nodejs18.x
3535
InlineCode: |
3636
exports.handler = async (event, context, callback) => {
3737
return {

tests/translator/input/api_merge_definitions_with_conflicting_auth.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Resources:
2828
Type: AWS::Serverless::Function
2929
Properties:
3030
Handler: index.handler
31-
Runtime: nodejs14.x
31+
Runtime: nodejs18.x
3232
InlineCode: |
3333
exports.handler = async (event, context, callback) => {
3434
return {

tests/translator/input/api_merge_definitions_with_conflicting_methods.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Resources:
2727
Type: AWS::Serverless::Function
2828
Properties:
2929
Handler: index.handler
30-
Runtime: nodejs14.x
30+
Runtime: nodejs18.x
3131
InlineCode: |
3232
exports.handler = async (event, context, callback) => {
3333
return {

tests/translator/input/api_merge_definitions_with_conflicting_request_models.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Resources:
3535
Type: AWS::Serverless::Function
3636
Properties:
3737
Handler: index.handler
38-
Runtime: nodejs14.x
38+
Runtime: nodejs18.x
3939
InlineCode: |
4040
exports.handler = async (event, context, callback) => {
4141
return {

tests/translator/input/api_merge_definitions_with_different_methods.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Resources:
2727
Type: AWS::Serverless::Function
2828
Properties:
2929
Handler: index.handler
30-
Runtime: nodejs14.x
30+
Runtime: nodejs18.x
3131
InlineCode: |
3232
exports.handler = async (event, context, callback) => {
3333
return {

tests/translator/input/api_merge_definitions_with_full_properties.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Resources:
4949
Type: AWS::Serverless::Function
5050
Properties:
5151
Handler: index.handler
52-
Runtime: nodejs14.x
52+
Runtime: nodejs18.x
5353
InlineCode: |
5454
exports.handler = async (event, context, callback) => {
5555
return {

tests/translator/input/api_with_custom_domain_regional.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Resources:
3838
return response;
3939
};
4040
Handler: index.handler
41-
Runtime: nodejs14.x
41+
Runtime: nodejs18.x
4242
Events:
4343
ImplicitGet:
4444
Type: Api

tests/translator/input/api_with_custom_domains_edge.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Resources:
1919
return response;
2020
};
2121
Handler: index.handler
22-
Runtime: nodejs14.x
22+
Runtime: nodejs18.x
2323
Events:
2424
Fetch:
2525
Type: Api

tests/translator/input/api_with_custom_domains_regional.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Resources:
3838
return response;
3939
};
4040
Handler: index.handler
41-
Runtime: nodejs14.x
41+
Runtime: nodejs18.x
4242
Events:
4343
ImplicitGet:
4444
Type: Api

tests/translator/input/api_with_custom_domains_regional_latency_routing.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Resources:
4141
return response;
4242
};
4343
Handler: index.handler
44-
Runtime: nodejs14.x
44+
Runtime: nodejs18.x
4545
Events:
4646
ImplicitGet:
4747
Type: Api

0 commit comments

Comments
 (0)