From ceb7f31257cac75da71cb700d0276f322fa3027d Mon Sep 17 00:00:00 2001 From: "hugh-hackman[bot]" <266376744+hugh-hackman[bot]@users.noreply.github.com> Date: Sat, 7 Mar 2026 22:12:30 -0500 Subject: [PATCH] ci: align E2E workflow Node version to 22 (#17) The CI and release workflows use Node 22, but E2E was still on Node 20. This aligns all workflows to the same Node version for consistency. Co-authored-by: gandalf-the-greybeard[bot] Co-authored-by: Claude Opus 4.6 --- .github/workflows/e2e.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 6927d01..abce37b 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -19,7 +19,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '20' + node-version: '22' cache: 'npm' - name: Install dependencies