From 3ba973f6e53e4bffa14b90fa7ef211c144b8e9fc Mon Sep 17 00:00:00 2001 From: jaysonv0341 Date: Mon, 13 Oct 2025 16:19:22 -0600 Subject: [PATCH] Fix: Use correct action reference claude-code-action-official The action name should be anthropics/claude-code-action-official@v1 not anthropics/claude-code-action@v1 per the GitHub Marketplace. --- .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 3983eef..dd7822f 100644 --- a/.github/workflows/claude-review.yml +++ b/.github/workflows/claude-review.yml @@ -53,7 +53,7 @@ jobs: - name: Run Claude via Anthropic API if: ${{ secrets.ANTHROPIC_API_KEY != '' }} - uses: anthropics/claude-code-action@v1 + uses: anthropics/claude-code-action-official@v1 with: github_token: ${{ steps.app-token.outputs.token || secrets.GITHUB_TOKEN }} anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}