From 0c435c4afab4afb2b294b1aa1c78acf732616918 Mon Sep 17 00:00:00 2001 From: Reinier van der Leer Date: Tue, 25 Nov 2025 15:48:57 +0100 Subject: [PATCH] dx: Update Node.js versions in GitHub workflows to match frontend requirement (#11449) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This unbreaks the Claude Code and Copilot workflows in our repo. - Follow-up to #11288 ### Changes 🏗️ - Update `node-version` on `actions/setup-node@v4` from v21 to v22 --- .github/workflows/claude-dependabot.yml | 2 +- .github/workflows/claude.yml | 2 +- .github/workflows/copilot-setup-steps.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/claude-dependabot.yml b/.github/workflows/claude-dependabot.yml index 902fc461b2..20b6f1d28e 100644 --- a/.github/workflows/claude-dependabot.yml +++ b/.github/workflows/claude-dependabot.yml @@ -80,7 +80,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v4 with: - node-version: "21" + node-version: "22" - name: Enable corepack run: corepack enable diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index 31f2769ea4..51eb764b80 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -90,7 +90,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v4 with: - node-version: "21" + node-version: "22" - name: Enable corepack run: corepack enable diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 7af1ec4365..13ef01cc44 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -78,7 +78,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v4 with: - node-version: "21" + node-version: "22" - name: Enable corepack run: corepack enable @@ -299,4 +299,4 @@ jobs: echo "✅ AutoGPT Platform development environment setup complete!" echo "🚀 Ready for development with Docker services running" echo "📝 Backend server: poetry run serve (port 8000)" - echo "🌐 Frontend server: pnpm dev (port 3000)" \ No newline at end of file + echo "🌐 Frontend server: pnpm dev (port 3000)"