From d1893f66925f2f6cda36d4042b71b5093772c135 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 30 Oct 2025 00:10:13 +0000 Subject: [PATCH] docs: update action references to @v1 in current examples MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update current documentation examples to use @v1: - setup.md: Updated custom GitHub App workflow example - configuration.md: Updated additional permissions examples Note: Migration guide "Before (v0.x)" examples correctly retain @beta references as that was the version tag used during v0.x. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- docs/configuration.md | 4 ++-- docs/setup.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index ecc75bc..46c2687 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -130,7 +130,7 @@ To allow Claude to view workflow run results, job logs, and CI status: 2. **Configure the action with additional permissions**: ```yaml - - uses: anthropics/claude-code-action@beta + - uses: anthropics/claude-code-action@v1 with: anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} additional_permissions: | @@ -162,7 +162,7 @@ jobs: claude-ci-helper: runs-on: ubuntu-latest steps: - - uses: anthropics/claude-code-action@beta + - uses: anthropics/claude-code-action@v1 with: anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} additional_permissions: | diff --git a/docs/setup.md b/docs/setup.md index 2cfbd47..e0c7f56 100644 --- a/docs/setup.md +++ b/docs/setup.md @@ -117,7 +117,7 @@ If you prefer to configure the app manually or need custom permissions: private-key: ${{ secrets.APP_PRIVATE_KEY }} # Use Claude with your custom app's token - - uses: anthropics/claude-code-action@beta + - uses: anthropics/claude-code-action@v1 with: anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} github_token: ${{ steps.app-token.outputs.token }}