fix: claude-code-action を v1.0.89 から v1.0.88 にダウングレード#44
Merged
Conversation
v1.0.89 で導入された restoreConfigFromBase が SENSITIVE_PATHS にシンボリックリンクを含むリポジトリでクラッシュするバグ(anthropics/claude-code-action#1187)を回避するため、 バグのない v1.0.88 にピン留めする。 fix が取り込まれた版がリリースされ次第、バージョンを戻す。
k-asm
added a commit
that referenced
this pull request
Apr 10, 2026
review-dependabot.yml と claude-code.yml にも同じ v1.0.89 がハードコードされていたため修正。 anthropics/claude-code-action#1187 のバグ回避(#44 の続き)。
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.
問題
v1.0.89 で導入された
restoreConfigFromBase(PR head を信頼せずorigin/mainの設定ファイルに差し替えるセキュリティ機構)に、シンボリックリンクを含むリポジトリでクラッシュするバグがある(anthropics/claude-code-action#1187)。cpSyncがdereference: falseで呼ばれるため、シンボリックリンクをそのまま再作成しようとするが、コピー先の.claude-pr/ディレクトリがまだ存在しない状態でsymlink()が呼ばれENOENTで失敗する。.claudeがシンボリックリンクになっているリポジトリ(例: xflagstudio/m-store)でコードレビュー CI が毎回 fail する状態になっている。修正内容
claude-code-actionを v1.0.89(6e2bd52)から v1.0.88(1eddb334)にダウングレードしてピン留めする。v1.0.88 にはrestoreConfigFromBase自体がなく、問題が発現しない。fix PR(anthropics/claude-code-action#1186)がマージされ新バージョンがリリースされ次第、バージョンを戻す。