Skip to content

Commit bbf7149

Browse files
committed
Change default Node runtime from 18 to 20
1 parent 720b576 commit bbf7149

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Readme-Usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ a365 setup # Creates agent blueprint and registers messaging endpoint
398398
Choose based on your application type:
399399

400400
- **.NET Projects:** .NET 8.0 SDK or later
401-
- **Node.js Projects:** Node.js (18+ recommended) and npm
401+
- **Node.js Projects:** Node.js (20+ recommended) and npm
402402
- **Python Projects:** Python 3.11+ and pip
403403

404404
The CLI will validate that required tools are installed before deployment.

src/Microsoft.Agents.A365.DevTools.Cli/Commands/SetupSubcommands/InfrastructureSubcommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ private static string GetRuntimeForPlatform(Models.ProjectPlatform platform)
652652
return platform switch
653653
{
654654
Models.ProjectPlatform.Python => "PYTHON:3.11",
655-
Models.ProjectPlatform.NodeJs => "NODE:18-lts",
655+
Models.ProjectPlatform.NodeJs => "NODE:20-lts",
656656
Models.ProjectPlatform.DotNet => "DOTNETCORE:8.0",
657657
_ => "DOTNETCORE:8.0" // Default fallback
658658
};

0 commit comments

Comments
 (0)