Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/maint-76-claude-code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ jobs:
- name: Run Claude Code Review
id: claude
continue-on-error: true
uses: anthropics/claude-code-action@2fee15510437d71399d9139ed60433470484a8fb # v1
uses: anthropics/claude-code-action@30544b674398ee15c84819bd87caf8a87e8c7b55 # v1

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸ”’ Security & Privacy | 🟑 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Verify the new commit hash and check for potential issues

echo "=== Checking if the new commit exists ==="
curl -sS -f "https://api.github.com/repos/anthropics/claude-code-action/commits/30544b674398ee15c84819bd87caf8a87e8c7b55" | jq -r '.sha, .commit.message' || echo "Commit not found or API error"

echo -e "\n=== Checking the old commit for comparison ==="
curl -sS -f "https://api.github.com/repos/anthropics/claude-code-action/commits/2fee155" | jq -r '.sha, .commit.message' || echo "Old commit not found"

echo -e "\n=== Checking for v1 tag/release ==="
curl -sS "https://api.github.com/repos/anthropics/claude-code-action/git/ref/tags/v1" | jq -r '.object.sha' || echo "v1 tag not found"

echo -e "\n=== Checking for releases ==="
curl -sS "https://api.github.com/repos/anthropics/claude-code-action/releases" | jq -r '.[] | select(.tag_name | startswith("v1")) | {tag_name, published_at, body}' | head -20

Repository: stranske/Ready

Length of output: 4621


Pin the action to a released version tag instead of a development commit.

The commit 30544b674398ee15c84819bd87caf8a87e8c7b55 is valid and represents a routine dependency bump, but it pins to a specific development commit ahead of released versions. The v1.0.154 release (published 2026-06-22) is newer. Consider using @v1 or @v1.0.154 instead to track official releases and simplify maintenance.

πŸ€– Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.github/workflows/maint-76-claude-code-review.yml at line 192, Replace the
commit hash pinning in the anthropics/claude-code-action uses statement with a
released version tag. Change the reference from
`@30544b674398ee15c84819bd87caf8a87e8c7b55` to either `@v1` (to track the latest v1
release) or `@v1.0.154` (for the specific newer release) to ensure the workflow
uses official released versions rather than development commits.

with:
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
allowed_bots: '*'
Expand Down
Loading