Skip to content

Commit e513706

Browse files
author
Connor Robertson
authored
Chore:Upgrade integ tests to node to v18.x (#3468)
1 parent ef93ac1 commit e513706

20 files changed

+23
-23
lines changed

integration/resources/templates/combination/function_with_alias_intrinsics.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Resources:
1919
Type: AWS::Serverless::Function
2020
Properties:
2121
Handler: index.handler
22-
Runtime: nodejs16.x
22+
Runtime: nodejs18.x
2323
CodeUri:
2424
# Just trying to create a complex intrinsic function where only a part of it can be resolved
2525
Bucket:

integration/resources/templates/single/basic_function.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Resources:
33
Type: AWS::Serverless::Function
44
Properties:
55
Handler: index.handler
6-
Runtime: nodejs16.x
6+
Runtime: nodejs18.x
77
CodeUri: ${codeuri}
88
MemorySize: 128
99
Policies:

integration/resources/templates/single/basic_function_event_destinations.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Resources:
4242
}
4343
};
4444
Handler: index.handler
45-
Runtime: nodejs16.x
45+
Runtime: nodejs18.x
4646
MemorySize: 1024
4747
MyTestFunction2:
4848
Type: AWS::Serverless::Function
@@ -74,7 +74,7 @@ Resources:
7474
}
7575
};
7676
Handler: index.handler
77-
Runtime: nodejs16.x
77+
Runtime: nodejs18.x
7878
MemorySize: 1024
7979
DestinationLambda:
8080
Type: AWS::Serverless::Function
@@ -88,7 +88,7 @@ Resources:
8888
return response;
8989
};
9090
Handler: index.handler
91-
Runtime: nodejs16.x
91+
Runtime: nodejs18.x
9292
MemorySize: 1024
9393
DestinationSQS:
9494
Condition: QueueCreationDisabled

integration/resources/templates/single/basic_function_no_envvar.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Resources:
33
Type: AWS::Serverless::Function
44
Properties:
55
Handler: index.handler
6-
Runtime: nodejs16.x
6+
Runtime: nodejs18.x
77
CodeUri: ${codeuri}
88
MemorySize: 128
99
Policies:

integration/resources/templates/single/basic_function_openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Resources:
66
Type: AWS::Serverless::Function
77
Properties:
88
Handler: index.handler
9-
Runtime: nodejs16.x
9+
Runtime: nodejs18.x
1010
CodeUri: ${codeuri}
1111
MemorySize: 128
1212
Policies:

integration/resources/templates/single/basic_function_with_arm_architecture.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Resources:
33
Type: AWS::Serverless::Function
44
Properties:
55
Handler: index.handler
6-
Runtime: nodejs16.x
6+
Runtime: nodejs18.x
77
CodeUri: ${codeuri}
88
MemorySize: 128
99
Architectures: [arm64]

integration/resources/templates/single/basic_function_with_function_url_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Resources:
33
Type: AWS::Serverless::Function
44
Properties:
55
Handler: index.handler
6-
Runtime: nodejs16.x
6+
Runtime: nodejs18.x
77
CodeUri: ${codeuri}
88
MemorySize: 128
99
FunctionUrlConfig:

integration/resources/templates/single/basic_function_with_function_url_with_autopuplishalias.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Resources:
33
Type: AWS::Serverless::Function
44
Properties:
55
Handler: index.handler
6-
Runtime: nodejs16.x
6+
Runtime: nodejs18.x
77
CodeUri: ${codeuri}
88
MemorySize: 128
99
AutoPublishAlias: live

integration/resources/templates/single/basic_function_with_kmskeyarn.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Resources:
33
Type: AWS::Serverless::Function
44
Properties:
55
Handler: index.handler
6-
Runtime: nodejs16.x
6+
Runtime: nodejs18.x
77
CodeUri: ${codeuri}
88
MemorySize: 128
99
Environment:

integration/resources/templates/single/basic_function_with_sns_dlq.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Resources:
33
Type: AWS::Serverless::Function
44
Properties:
55
Handler: index.handler
6-
Runtime: nodejs16.x
6+
Runtime: nodejs18.x
77
CodeUri: ${codeuri}
88
DeadLetterQueue:
99
Type: SNS

0 commit comments

Comments
 (0)