fix(ci): pin e2e-chat setup-node to mirrored v6.4.0 SHA
CI / Detect changes (pull_request) Waiting to run
CI / Canvas (Next.js) (pull_request) Waiting to run
E2E API Smoke Test / detect-changes (pull_request) Waiting to run
E2E Chat / detect-changes (pull_request) Waiting to run
Handlers Postgres Integration / Handlers Postgres Integration (pull_request) Blocked by required conditions
Lint pre-flip continue-on-error / Verify continue-on-error flips have run-log proof (pull_request) Waiting to run
lint-required-context-exists-in-bp / lint-required-context-exists-in-bp (pull_request) Waiting to run
lint-required-no-paths / lint-required-no-paths (pull_request) Waiting to run
Block internal-flavored paths / Block forbidden paths (pull_request) Successful in 40s
Lint curl status-code capture / Scan workflows for curl status-capture pollution (pull_request) Successful in 31s
Secret scan / Scan diff for credential-shaped strings (pull_request) Successful in 30s
Handlers Postgres Integration / detect-changes (pull_request) Successful in 2m6s
qa-review / approved (pull_request) Successful in 31s
security-review / approved (pull_request) Successful in 30s
Runtime PR-Built Compatibility / detect-changes (pull_request) Successful in 1m35s
sop-checklist / all-items-acked (pull_request) Has started running
Lint workflow YAML (Gitea-1.22.6-hostile shapes) / Lint workflow YAML for Gitea-1.22.6-hostile shapes (pull_request) Successful in 1m58s
gate-check-v3 / gate-check (pull_request) Successful in 43s
sop-tier-check / tier-check (pull_request) Successful in 33s
lint-continue-on-error-tracking / lint-continue-on-error-tracking (pull_request) Successful in 3m41s
Runtime PR-Built Compatibility / PR-built wheel + import smoke (pull_request) Successful in 14s
CI / Platform (Go) (pull_request) Successful in 22m17s
CI / Shellcheck (E2E scripts) (pull_request) Has been cancelled
CI / Canvas Deploy Reminder (pull_request) Has been cancelled
E2E API Smoke Test / E2E API Smoke Test (pull_request) Has been cancelled
E2E Chat / E2E Chat (pull_request) Has been cancelled
CI / Python Lint & Test (pull_request) Has been cancelled
CI / all-required (pull_request) Has been cancelled

The E2E Chat job has a 100% failure rate since inception (33 failures,
0 successes across all PRs + staging HEAD). Root cause: the workflow
pinned actions/setup-node@60edb5dd... (v4), whose SHA was never
replicated into the self-hosted Gitea actions mirror
(git.moleculesai.app/actions/setup-node -> 404 reference not found).
Every run dies at action resolution, ~12s in, before any test code.

Sibling Playwright workflow e2e-staging-canvas.yml already uses the
mirrored v6.4.0 SHA 48b55a011bda... (resolves 200). Align e2e-chat.yml
to the same pin so the job can actually execute.

This is not a #1277 regression and not a code defect — E2E Chat has
never run a single test. The check is non-blocking (continue-on-error,
not yet in branch protection per the bp-required pending-#1142 note),
so no merges were gated by this.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
core-devops
2026-05-15 22:34:56 -07:00
parent b5411d2c37
commit 95048afa27
+1 -1
View File
@@ -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'