Skip to content

Commit 15e7146

Browse files
author
Esen Sagynov
committed
Upgrade Node.js runtime to v18 since v16 is EOL as of 2024.
1 parent 36726d6 commit 15e7146

File tree

43 files changed

+78
-78
lines changed

Some content is hidden

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

43 files changed

+78
-78
lines changed

packages/cdk-blue-green-container-deployment/src/ecs-deployment-group.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export class EcsDeploymentGroup extends Resource implements IEcsDeploymentGroup,
129129
}
130130

131131
const serviceToken = new Function(this, 'Function', {
132-
runtime: Runtime.NODEJS_16_X,
132+
runtime: Runtime.NODEJS_18_X,
133133
code: Code.fromAsset(path.join(__dirname, 'lambdas', 'ecs-deployment-group')),
134134
handler: 'index.handler',
135135
timeout: Duration.minutes(15),

packages/cdk-blue-green-container-deployment/src/ecs-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export class EcsService extends Construct implements IConnectable, IEcsService,
103103
];
104104

105105
const serviceToken = new Function(this, 'Function', {
106-
runtime: Runtime.NODEJS_16_X,
106+
runtime: Runtime.NODEJS_18_X,
107107
code: Code.fromAsset(path.join(__dirname, 'lambdas', 'ecs-service')),
108108
handler: 'index.handler',
109109
timeout: Duration.minutes(15),

packages/cdk-chatops/src/msteams-incoming-webhook-configuration.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export class MSTeamsIncomingWebhookConfiguration extends Construct {
3636
super(scope, id);
3737

3838
this.incomingWebhook = new Function(this, 'Function', {
39-
runtime: Runtime.NODEJS_16_X,
39+
runtime: Runtime.NODEJS_18_X,
4040
code: Code.fromAsset(path.join(__dirname, 'lambdas', 'msteams-incoming-webhook')),
4141
handler: 'index.handler',
4242
environment: {

packages/cdk-cloudfront-authorization/src/__tests__/__snapshots__/authorizations.test.ts.snap

+6-6
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Object {
6666
"Arn",
6767
],
6868
},
69-
"Runtime": "nodejs16.x",
69+
"Runtime": "nodejs18.x",
7070
"Timeout": 300,
7171
},
7272
"Type": "AWS::Lambda::Function",
@@ -183,7 +183,7 @@ Object {
183183
"Arn",
184184
],
185185
},
186-
"Runtime": "nodejs16.x",
186+
"Runtime": "nodejs18.x",
187187
},
188188
"Type": "AWS::Lambda::Function",
189189
},
@@ -232,7 +232,7 @@ Object {
232232
"Arn",
233233
],
234234
},
235-
"Runtime": "nodejs16.x",
235+
"Runtime": "nodejs18.x",
236236
},
237237
"Type": "AWS::Lambda::Function",
238238
},
@@ -1043,7 +1043,7 @@ Object {
10431043
"Arn",
10441044
],
10451045
},
1046-
"Runtime": "nodejs16.x",
1046+
"Runtime": "nodejs18.x",
10471047
"Timeout": 300,
10481048
},
10491049
"Type": "AWS::Lambda::Function",
@@ -1160,7 +1160,7 @@ Object {
11601160
"Arn",
11611161
],
11621162
},
1163-
"Runtime": "nodejs16.x",
1163+
"Runtime": "nodejs18.x",
11641164
},
11651165
"Type": "AWS::Lambda::Function",
11661166
},
@@ -1209,7 +1209,7 @@ Object {
12091209
"Arn",
12101210
],
12111211
},
1212-
"Runtime": "nodejs16.x",
1212+
"Runtime": "nodejs18.x",
12131213
},
12141214
"Type": "AWS::Lambda::Function",
12151215
},

packages/cdk-cloudfront-authorization/src/__tests__/__snapshots__/distributions.test.ts.snap

+6-6
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Object {
119119
"Arn",
120120
],
121121
},
122-
"Runtime": "nodejs16.x",
122+
"Runtime": "nodejs18.x",
123123
"Timeout": 300,
124124
},
125125
"Type": "AWS::Lambda::Function",
@@ -236,7 +236,7 @@ Object {
236236
"Arn",
237237
],
238238
},
239-
"Runtime": "nodejs16.x",
239+
"Runtime": "nodejs18.x",
240240
},
241241
"Type": "AWS::Lambda::Function",
242242
},
@@ -285,7 +285,7 @@ Object {
285285
"Arn",
286286
],
287287
},
288-
"Runtime": "nodejs16.x",
288+
"Runtime": "nodejs18.x",
289289
},
290290
"Type": "AWS::Lambda::Function",
291291
},
@@ -1506,7 +1506,7 @@ Object {
15061506
"Arn",
15071507
],
15081508
},
1509-
"Runtime": "nodejs16.x",
1509+
"Runtime": "nodejs18.x",
15101510
"Timeout": 300,
15111511
},
15121512
"Type": "AWS::Lambda::Function",
@@ -1623,7 +1623,7 @@ Object {
16231623
"Arn",
16241624
],
16251625
},
1626-
"Runtime": "nodejs16.x",
1626+
"Runtime": "nodejs18.x",
16271627
},
16281628
"Type": "AWS::Lambda::Function",
16291629
},
@@ -1672,7 +1672,7 @@ Object {
16721672
"Arn",
16731673
],
16741674
},
1675-
"Runtime": "nodejs16.x",
1675+
"Runtime": "nodejs18.x",
16761676
},
16771677
"Type": "AWS::Lambda::Function",
16781678
},

packages/cdk-cloudfront-authorization/src/secret-generator.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export class SecretGenerator extends Construct {
1515

1616
const secretGenerator = new aws_lambda.SingletonFunction(this, 'Function', {
1717
uuid: 'cloudcomponents-cdk-cloudfront-authorization-secret-generator',
18-
runtime: aws_lambda.Runtime.NODEJS_16_X,
18+
runtime: aws_lambda.Runtime.NODEJS_18_X,
1919
handler: 'index.handler',
2020
code: aws_lambda.Code.fromAsset(path.join(__dirname, 'lambdas', 'secret-generator')),
2121
});

packages/cdk-cloudfront-authorization/src/user-pool-domain.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class UserPoolDomain extends Construct {
1414

1515
const secretGenerator = new aws_lambda.SingletonFunction(this, 'Function', {
1616
uuid: 'cloudcomponents-cdk-cloudfront-authorization-user-pool-domain',
17-
runtime: aws_lambda.Runtime.NODEJS_16_X,
17+
runtime: aws_lambda.Runtime.NODEJS_18_X,
1818
handler: 'index.handler',
1919
code: aws_lambda.Code.fromAsset(path.join(__dirname, 'lambdas', 'user-pool-domain')),
2020
});

packages/cdk-codepipeline-check-parameter-action/src/__tests__/__snapshots__/codepipeline-check-email-parameter-action.test.ts.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ Object {
236236
"Arn",
237237
],
238238
},
239-
"Runtime": "nodejs16.x",
239+
"Runtime": "nodejs18.x",
240240
},
241241
"Type": "AWS::Lambda::Function",
242242
},

packages/cdk-codepipeline-check-parameter-action/src/__tests__/__snapshots__/codepipeline-check-parameter-action.test.ts.snap

+4-4
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ Object {
236236
"Arn",
237237
],
238238
},
239-
"Runtime": "nodejs16.x",
239+
"Runtime": "nodejs18.x",
240240
},
241241
"Type": "AWS::Lambda::Function",
242242
},
@@ -999,7 +999,7 @@ Object {
999999
"Arn",
10001000
],
10011001
},
1002-
"Runtime": "nodejs16.x",
1002+
"Runtime": "nodejs18.x",
10031003
},
10041004
"Type": "AWS::Lambda::Function",
10051005
},
@@ -1159,7 +1159,7 @@ Object {
11591159
"Arn",
11601160
],
11611161
},
1162-
"Runtime": "nodejs16.x",
1162+
"Runtime": "nodejs18.x",
11631163
},
11641164
"Type": "AWS::Lambda::Function",
11651165
},
@@ -1909,7 +1909,7 @@ Object {
19091909
"Arn",
19101910
],
19111911
},
1912-
"Runtime": "nodejs16.x",
1912+
"Runtime": "nodejs18.x",
19131913
},
19141914
"Type": "AWS::Lambda::Function",
19151915
},

packages/cdk-codepipeline-check-parameter-action/src/check-parameter-function.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export interface CheckParamterFunctionProps {
1919
export class CheckParameterFunction extends Function {
2020
constructor(scope: Construct, id: string, props: CheckParamterFunctionProps) {
2121
super(scope, id, {
22-
runtime: Runtime.NODEJS_16_X,
22+
runtime: Runtime.NODEJS_18_X,
2323
handler: 'index.handler',
2424
code: Code.fromAsset(path.join(__dirname, 'lambdas', 'check-parameter')),
2525
});

packages/cdk-codepipeline-merge-action/src/__tests__/__snapshots__/codepipeline-merge-action.test.ts.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ Object {
373373
"Arn",
374374
],
375375
},
376-
"Runtime": "nodejs16.x",
376+
"Runtime": "nodejs18.x",
377377
},
378378
"Type": "AWS::Lambda::Function",
379379
},

packages/cdk-codepipeline-merge-action/src/merge-branches-function.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export interface MergeBranchesFunctionProps {
1919
export class MergeBranchesFunction extends Function {
2020
constructor(scope: Construct, id: string, props: MergeBranchesFunctionProps) {
2121
super(scope, id, {
22-
runtime: Runtime.NODEJS_16_X,
22+
runtime: Runtime.NODEJS_18_X,
2323
handler: 'index.handler',
2424
code: Code.fromAsset(path.join(__dirname, 'lambdas', 'merge-branches')),
2525
});

packages/cdk-codepipeline-slack/src/__tests__/__snapshots__/slack-approval-action.test.ts.snap

+4-4
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ Object {
350350
"Arn",
351351
],
352352
},
353-
"Runtime": "nodejs16.x",
353+
"Runtime": "nodejs18.x",
354354
},
355355
"Type": "AWS::Lambda::Function",
356356
},
@@ -467,7 +467,7 @@ Object {
467467
"Arn",
468468
],
469469
},
470-
"Runtime": "nodejs16.x",
470+
"Runtime": "nodejs18.x",
471471
},
472472
"Type": "AWS::Lambda::Function",
473473
},
@@ -1158,7 +1158,7 @@ Object {
11581158
"Arn",
11591159
],
11601160
},
1161-
"Runtime": "nodejs16.x",
1161+
"Runtime": "nodejs18.x",
11621162
},
11631163
"Type": "AWS::Lambda::Function",
11641164
},
@@ -1275,7 +1275,7 @@ Object {
12751275
"Arn",
12761276
],
12771277
},
1278-
"Runtime": "nodejs16.x",
1278+
"Runtime": "nodejs18.x",
12791279
},
12801280
"Type": "AWS::Lambda::Function",
12811281
},

packages/cdk-codepipeline-slack/src/slack-approval-action.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export class SlackApprovalAction extends Action {
6363
}
6464

6565
const approvalRequester = new Function(scope, 'SlackApprovalRequesterFunction', {
66-
runtime: Runtime.NODEJS_16_X,
66+
runtime: Runtime.NODEJS_18_X,
6767
handler: 'index.handler',
6868
code: Code.fromAsset(path.join(__dirname, 'lambdas', 'approval-requester')),
6969
environment,
@@ -74,7 +74,7 @@ export class SlackApprovalAction extends Action {
7474
topic.addSubscription(new LambdaSubscription(approvalRequester));
7575

7676
const approvalHandler = new Function(scope, 'SlackApprovalHandlerFunction', {
77-
runtime: Runtime.NODEJS_16_X,
77+
runtime: Runtime.NODEJS_18_X,
7878
handler: 'index.handler',
7979
code: Code.fromAsset(path.join(__dirname, 'lambdas', 'approval-handler')),
8080
environment,

packages/cdk-codepipeline-slack/src/slack-notifier.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class SlackNotifier extends Construct {
4646
}
4747

4848
const notifier = new Function(scope, 'SlackNotifierFunction', {
49-
runtime: Runtime.NODEJS_16_X,
49+
runtime: Runtime.NODEJS_18_X,
5050
handler: 'index.handler',
5151
code: Code.fromAsset(path.join(__dirname, 'lambdas', 'notifier')),
5252
environment: this.environment,

packages/cdk-container-registry/src/__tests__/__snapshots__/image-repository.test.ts.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ Object {
165165
"Arn",
166166
],
167167
},
168-
"Runtime": "nodejs16.x",
168+
"Runtime": "nodejs18.x",
169169
},
170170
"Type": "AWS::Lambda::Function",
171171
},

packages/cdk-container-registry/src/image-repository.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export class ImageRepository extends Repository {
6666
const rule = this.onImageScanCompleted(id, { imageTags });
6767

6868
const severityFilter = new Function(this, 'SevierityFilter', {
69-
runtime: Runtime.NODEJS_16_X,
69+
runtime: Runtime.NODEJS_18_X,
7070
code: Code.fromAsset(path.join(__dirname, 'lambdas', 'severity-filter')),
7171
handler: 'index.handler',
7272
});

packages/cdk-contentful-webhook/src/__tests__/__snapshots__/contentful-webhook.test.ts.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Object {
3939
"Arn",
4040
],
4141
},
42-
"Runtime": "nodejs16.x",
42+
"Runtime": "nodejs18.x",
4343
"Timeout": 900,
4444
},
4545
"Type": "AWS::Lambda::Function",

packages/cdk-contentful-webhook/src/contentful-webhook.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class ContentfulWebhook extends Construct {
2020

2121
const handler = new aws_lambda.SingletonFunction(this, 'CustomResourceHandler', {
2222
uuid: '91f2075f-b950-4743-a66b-ee0f6febf50d',
23-
runtime: aws_lambda.Runtime.NODEJS_16_X,
23+
runtime: aws_lambda.Runtime.NODEJS_18_X,
2424
code: aws_lambda.Code.fromAsset(path.join(__dirname, 'lambdas', 'contentful-webhook')),
2525
handler: 'index.handler',
2626
lambdaPurpose: 'Custom::ContentfulWebhook',

packages/cdk-deletable-bucket/src/__tests__/__snapshots__/deletable-bucket.test.ts.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ Object {
153153
"Arn",
154154
],
155155
},
156-
"Runtime": "nodejs16.x",
156+
"Runtime": "nodejs18.x",
157157
"Timeout": 900,
158158
},
159159
"Type": "AWS::Lambda::Function",

packages/cdk-deletable-bucket/src/empty-bucket.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class EmptyBucket extends Construct {
1616
const onEvent = new SingletonFunction(this, 'EmptyBucketFunction', {
1717
code: Code.fromAsset(path.join(__dirname, 'lambdas', 'empty-bucket')),
1818
handler: 'index.handler',
19-
runtime: Runtime.NODEJS_16_X,
19+
runtime: Runtime.NODEJS_18_X,
2020
uuid: 'CloudcomponentsEmptyBucketCustomResource',
2121
timeout: Duration.minutes(15),
2222
});

packages/cdk-dynamodb-seeder/src/__tests__/__snapshots__/dynamodb-seeder.test.ts.snap

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Object {
2222
"Arn",
2323
],
2424
},
25-
"Runtime": "nodejs16.x",
25+
"Runtime": "nodejs18.x",
2626
"Timeout": 900,
2727
},
2828
"Type": "AWS::Lambda::Function",
@@ -169,7 +169,7 @@ Object {
169169
"Arn",
170170
],
171171
},
172-
"Runtime": "nodejs16.x",
172+
"Runtime": "nodejs18.x",
173173
"Timeout": 900,
174174
},
175175
"Type": "AWS::Lambda::Function",
@@ -363,7 +363,7 @@ Object {
363363
"Arn",
364364
],
365365
},
366-
"Runtime": "nodejs16.x",
366+
"Runtime": "nodejs18.x",
367367
"Timeout": 900,
368368
},
369369
"Type": "AWS::Lambda::Function",
@@ -493,7 +493,7 @@ Object {
493493
"Arn",
494494
],
495495
},
496-
"Runtime": "nodejs16.x",
496+
"Runtime": "nodejs18.x",
497497
"Timeout": 900,
498498
},
499499
"Type": "AWS::Lambda::Function",
@@ -646,7 +646,7 @@ Object {
646646
"Arn",
647647
],
648648
},
649-
"Runtime": "nodejs16.x",
649+
"Runtime": "nodejs18.x",
650650
"Timeout": 900,
651651
},
652652
"Type": "AWS::Lambda::Function",

packages/cdk-dynamodb-seeder/src/dynamodb-seeder.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export class DynamoDBSeeder extends Construct {
2727

2828
const handler = new lambda.SingletonFunction(this, 'CustomResourceHandler', {
2929
uuid: 'Custom::DynamodbSeeder',
30-
runtime: lambda.Runtime.NODEJS_16_X,
30+
runtime: lambda.Runtime.NODEJS_18_X,
3131
code: lambda.Code.fromAsset(path.join(__dirname, 'lambdas', 'dynamodb-seeder')),
3232
handler: 'index.handler',
3333
lambdaPurpose: 'Custom::DynamodbSeeder',

0 commit comments

Comments
 (0)