Conversation
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
bgpat
approved these changes
Sep 15, 2026
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/ci.ymlのactions/checkoutを v2 から v7 に、actions/setup-goを v3 から v7 に上げます。 https://github.com/wantedly/infrastructure/issues/16098actions/checkoutは v5 で node20 から node24 に移行、actions/setup-goは v6 で node20 から node24 に移行しているため、それぞれ v5 / v6 以上であれば Node 20 EOL の要件を満たします。その上で互換性を確認し、最新の v7 を採用しました。なお同じワークフロー内の
docker/build-push-action@v1は Docker コンテナアクション (runs.using: docker) であり Node 実行を伴わないため、今回の対応対象外です(別途メンテナンスは検討の余地あり)。破壊的変更の確認
いずれも本リポジトリには影響しません。
ubuntu-latest) のため影響なし.git/configでなく$RUNNER_TEMP配下の別ファイルに保存pull_request_target/workflow_runでの fork PR checkout をブロックpushトリガーのみのため影響なしGOTOOLCHAIN=localを設定しgo.modのtoolchaindirective を優先go.modにtoolchaindirective はなく (go 1.18)、with:で go-version 指定もしていないため setup-go のデフォルト最新版がそのままインストールされ、go 1.18より新しいため toolchain 切り替えは発生せず影響なし🤖 Generated with Claude Code