fix(ci): update claude-code-action to v1#6252
Merged
Merged
Conversation
The pinned v1.0.88 version fails on fork PRs because it fetches branches by name from origin, which doesn't exist for external contributors. The fix (refs/pull/N/head fetching) was merged in v1.0.89+.
|
Claude finished @gustavosbarreto's task in 1m 3s —— View job Code Review CompleteReviewed 1 file across code quality, security, testing, language patterns, and architecture — no issues found. The code looks good as-is. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
anthropics/claude-code-actionfrom pinnedv1.0.88tov1(floating tag)Why
The pinned v1.0.88 fails on fork PRs with
fatal: couldn't find remote ref <branch>because it fetches branches by name from origin. Fork branches don't exist on origin.This was fixed in anthropics/claude-code-action#963 (merged 2026-04-15, available from v1.0.89+). Using
v1ensures we always get the latest fixes.Triggered by: #6248