From ec8a6ada6fde782d57fd4dba8e998f7f5e4d3411 Mon Sep 17 00:00:00 2001 From: jaysonv0341 Date: Mon, 13 Oct 2025 16:32:30 -0600 Subject: [PATCH] Fix: Use correct action name (without -official suffix) The repository is anthropics/claude-code-action, not anthropics/claude-code-action-official. The -official suffix only appears in the marketplace display name, not the actual repository name. --- .github/workflows/claude-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/claude-review.yml b/.github/workflows/claude-review.yml index a14222f..8a5ed1f 100644 --- a/.github/workflows/claude-review.yml +++ b/.github/workflows/claude-review.yml @@ -52,7 +52,7 @@ jobs: - name: Run Claude via Anthropic API - uses: anthropics/claude-code-action-official@v1 + uses: anthropics/claude-code-action@v1 with: github_token: ${{ steps.app-token.outputs.token || secrets.GITHUB_TOKEN }} anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}