Conversation
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
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.
概要
Node 20 の EOL 対応のため、
.github/workflows/labeler.ymlのactions/labelerを v4 から v7 に上げます。 https://github.com/wantedly/infrastructure/issues/16098actions/checkout/actions/setup-node/actions/cacheはすでに master 上で v7 / v7 / v6 (node24 対応版) に更新済みでした (commit6d326b1参照。B3 割当時点のスナップショットは古かったため、実リポジトリで再確認しています)。今回の対応が必要なのはactions/labeler@v4のみです。actions/labelerは v6 で node20 から node24 に移行しているため v6 以上であれば要件を満たしますが、最新の v7 を採用しました。破壊的変更の確認
labeler.yml) の構造が非互換な形式に刷新 (changed-files/any-glob-to-any-fileなどのキー導入).github/labeler.ymlを新形式に移行しました。各ラベルの意味・マッチ挙動(checkIfAnyGlobMatchesAnyFileによるグロブ単位の OR 評価)は 1:1 で保たれるよう変換しています。sync-labels入力のバグ修正(値が正しく読まれるようになる)sync-labelsを指定していないため影響なしdot入力のデフォルトがfalse→trueに変更(ドットファイルもマッチ対象になる)dot: falseを指定しましたなお、本ワークフローは
pull_request_targetトリガーですがactions/checkoutは使用していないため、fork PR checkout に関する懸念は該当しません。🤖 Generated with Claude Code