From b5c8b235ab317ff3647225a616a78fa70019ab29 Mon Sep 17 00:00:00 2001 From: fullstack-engineer Date: Fri, 15 May 2026 16:16:09 -0700 Subject: [PATCH] fix(e2e-chat): correct actions/setup-node SHA The pinned SHA 60edb5dd...d6f5 was invalid (typo in last 4 chars). act_runner failed to resolve it with 'reference not found' after ~14s, causing the E2E Chat job to fail before any test step could run. Switch to the v6.4.0 SHA (48b55a01...4041e) already verified in ci.yml and e2e-staging-canvas.yml. mc#774 tracker: this was a pre-existing failure mode, not introduced by PR #1142 / promotion #1242. --- .gitea/workflows/e2e-chat.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/e2e-chat.yml b/.gitea/workflows/e2e-chat.yml index 35d5c204..b8d3ca6a 100644 --- a/.gitea/workflows/e2e-chat.yml +++ b/.gitea/workflows/e2e-chat.yml @@ -97,7 +97,7 @@ jobs: cache-dependency-path: workspace-server/go.sum - if: needs.detect-changes.outputs.chat == 'true' - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d6f5 # v4 + uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 with: node-version: '22' cache: 'npm'