Compare commits

..

1 Commits

Author SHA1 Message Date
Claude
d1893f6692 docs: update action references to @v1 in current examples
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 <noreply@anthropic.com>
2025-10-30 00:10:13 +00:00
2 changed files with 2 additions and 2 deletions

View File

@@ -189,7 +189,7 @@ runs:
# Install Claude Code if no custom executable is provided
if [ -z "${{ inputs.path_to_claude_code_executable }}" ]; then
echo "Installing Claude Code..."
curl -fsSL https://claude.ai/install.sh | bash -s 2.0.43
curl -fsSL https://claude.ai/install.sh | bash -s 2.0.29
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
else
echo "Using custom Claude Code executable: ${{ inputs.path_to_claude_code_executable }}"

View File

@@ -111,7 +111,7 @@ runs:
run: |
if [ -z "${{ inputs.path_to_claude_code_executable }}" ]; then
echo "Installing Claude Code..."
curl -fsSL https://claude.ai/install.sh | bash -s 2.0.43
curl -fsSL https://claude.ai/install.sh | bash -s 2.0.29
else
echo "Using custom Claude Code executable: ${{ inputs.path_to_claude_code_executable }}"
# Add the directory containing the custom executable to PATH