From 6483997480e845cc674be4e0239c082f3569f2f0 Mon Sep 17 00:00:00 2001 From: Hunter Bown Date: Thu, 7 May 2026 21:03:42 -0500 Subject: [PATCH] ci(deploy-web): bump Node to 22 for wrangler@4 (#1111) wrangler 4 requires Node.js >=22; the deploy job was pinned to 20 and failed at `npx wrangler deploy` with "Wrangler requires at least Node.js v22.0.0". Co-authored-by: Claude Opus 4.7 (1M context) --- .github/workflows/deploy-web.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-web.yml b/.github/workflows/deploy-web.yml index 7d7cdd27..aaa76090 100644 --- a/.github/workflows/deploy-web.yml +++ b/.github/workflows/deploy-web.yml @@ -41,7 +41,8 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: 20 + # wrangler@4 requires Node 22+ + node-version: 22 cache: npm cache-dependency-path: web/package-lock.json