Skip to content

Commit

Permalink
feat(cdk): use node v18 as default for lambda
Browse files Browse the repository at this point in the history
  • Loading branch information
shellscape committed Feb 28, 2024
1 parent 2c93c0b commit ab0b28a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cdk/src/methods/node-function.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const addNodeFunction = (options: AddNodeFunctionOptions) => {
logRetention: RetentionDays.ONE_WEEK,
memorySize,
reservedConcurrentExecutions: concurrency?.reserved,
runtime: Runtime.NODEJS_16_X,
runtime: Runtime.NODEJS_18_X,
timeout,
tracing: Tracing.ACTIVE
});
Expand Down

0 comments on commit ab0b28a

Please sign in to comment.