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@9dd8b95a392eb34b6f5fb56cf5a64cb735912d4b # v1
uses: anthropics/claude-code-action@806af32823ef69c8ef357086c573a902af641307 # 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.

⚠️ Potential issue | 🟑 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Verify the pinned SHA exists and check version information

# Check if the commit exists in the repository
echo "Checking if commit 806af32823ef69c8ef357086c573a902af641307 exists..."
gh api repos/anthropics/claude-code-action/commits/806af32823ef69c8ef357086c573a902af641307 \
  --jq '{sha: .sha, message: .commit.message, author: .commit.author.name, date: .commit.author.date}' 2>&1

echo ""
echo "Checking latest releases and tags..."
gh api repos/anthropics/claude-code-action/releases/latest --jq '{tag: .tag_name, name: .name, published: .published_at}' 2>&1

echo ""
echo "Checking if v1 tag exists and what it points to..."
gh api repos/anthropics/claude-code-action/git/refs/tags/v1 --jq '{ref: .ref, sha: .object.sha}' 2>&1

Repository: stranske/Inv-Man-Intake

Length of output: 566


Update the version comment to accurately reflect the pinned commit.

The pinned SHA 806af32823ef69c8ef357086c573a902af641307 is valid and exists in the anthropics/claude-code-action repository. However, the version comment # v1 is misleading: the pinned commit (dated June 17, 2026) does not correspond to the v1 tag (which points to a different, older SHA from August 2025). The pinned commit is a point release that bumps Claude Code to version 2.1.181. Update the comment to # 2.1.181 or remove it for clarity.

πŸ€– 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, The version
comment `# v1` in the `uses` statement for the anthropics/claude-code-action is
inaccurate because the pinned SHA 806af32823ef69c8ef357086c573a902af641307 does
not correspond to the v1 tag but instead corresponds to version 2.1.181. Update
the comment from `# v1` to `# 2.1.181` to accurately reflect the pinned commit
version, or remove the comment entirely if you prefer not to specify a version.

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