File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ export class Maintenance extends Construct {
128128 "../assets/handlers/maintenance/maintenance.ts"
129129 ) ,
130130 description : "Lambda manage the maintenance mode status" ,
131- runtime : lambda . Runtime . NODEJS_20_X ,
131+ runtime : lambda . Runtime . NODEJS_22_X ,
132132 handler : "index.handler" ,
133133 timeout : Duration . seconds ( 5 ) ,
134134 filesystem : lambda . FileSystem . fromEfsAccessPoint (
@@ -151,7 +151,7 @@ export class Maintenance extends Construct {
151151 "../assets/handlers/maintenance/whitelist.ts"
152152 ) ,
153153 description : "Lambda to manage the maintenance whitelist" ,
154- runtime : lambda . Runtime . NODEJS_20_X ,
154+ runtime : lambda . Runtime . NODEJS_22_X ,
155155 handler : "index.handler" ,
156156 timeout : Duration . seconds ( 5 ) ,
157157 filesystem : lambda . FileSystem . fromEfsAccessPoint (
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ export class HeaderChangeDetection extends Construct {
103103
104104 const lambda = new Function ( this , "HeaderCheck" , {
105105 architecture : Architecture . X86_64 ,
106- runtime : Runtime . NODEJS_20_X ,
106+ runtime : Runtime . NODEJS_22_X ,
107107 handler : "header-check.handler" ,
108108 timeout : props . lambdaTimeout || Duration . seconds ( 10 ) ,
109109 code : Code . fromAsset ( join ( __dirname , "lambda" ) , {
Original file line number Diff line number Diff line change 2727 "source-map-support" : " ^0.5.21"
2828 },
2929 "peerDependencies" : {
30- "aws-cdk-lib" : " ^2.113 .0" ,
30+ "aws-cdk-lib" : " ^2.168 .0" ,
3131 "constructs" : " ^10.4.2"
3232 }
3333}
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ class EdgeLambdaFunction extends Construct {
6161 } ) ,
6262 } ,
6363 } ) ,
64- runtime : Runtime . NODEJS_20_X ,
64+ runtime : Runtime . NODEJS_22_X ,
6565 handler : `${ options . handlerName } .handler` ,
6666 ...options . functionOptions ,
6767 }
You can’t perform that action at this time.
0 commit comments