From 314f32cd2bc249ddeae9e6fe2cd00c59be515796 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Thu, 11 May 2023 16:51:18 +0100 Subject: [PATCH] feat(AWS Lambda): Recognize new .NET runtimes (#11941) --- lib/plugins/aws/provider.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/plugins/aws/provider.js b/lib/plugins/aws/provider.js index e962e4947..b542a67d6 100644 --- a/lib/plugins/aws/provider.js +++ b/lib/plugins/aws/provider.js @@ -614,8 +614,10 @@ class AwsProvider { }, awsLambdaRuntime: { enum: [ - 'dotnet6', 'dotnetcore3.1', + 'dotnet5.0', + 'dotnet6', + 'dotnet7', 'go1.x', 'java17', 'java11',