From 4bb69f7fd47f19b0c785a1f499a63d5a48270f61 Mon Sep 17 00:00:00 2001 From: Douglas Ezra Morrison Date: Wed, 20 May 2026 00:17:36 -0700 Subject: [PATCH] =?UTF-8?q?ci(claude):=20temporarily=20swap=20@v1=20?= =?UTF-8?q?=E2=86=92=20@beta=20to=20diagnose=20SDK=20crash?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The @v1 action has been crashing during SDK init with the error obfuscated as a minified-JS frame from sdk.mjs (matches upstream anthropics/claude-code-action#892). Per a maintainer-thread comment, @beta surfaces the actual underlying error instead of the AJV symptom. This is a one-shot debug change; revert to @v1 once the real error is known. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/claude.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index 08e87a224..392c36722 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -117,7 +117,11 @@ jobs: - name: Run Claude Code id: claude - uses: anthropics/claude-code-action@v1 + # TEMP: swapped @v1 → @beta to surface the real underlying error + # being masked by the AJV obfuscation in @v1 (see upstream + # anthropics/claude-code-action#892 comment by ovceev 2026-03-10). + # Revert to @v1 once we have a clear error from the next trigger. + uses: anthropics/claude-code-action@beta with: claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}