actions/checkout を v4 から v5 に更新(Node.js 20 非推奨警告の解消) - #29
Merged
Merged
Conversation
GitHub Actions 実行時の Node.js 20 非推奨警告を解消する。 actions/checkout@v4 は Node.js 20 を対象とし、ランナー側で Node.js 24 に 強制実行される警告が出ていた。v5 は Node.js 24 対応。 対象ワークフロー: - deploy_to_pages.yml - scheduler_daily.yml - claude-review.yml
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.
背景
PR #28 のデプロイ実行時に、GitHub Actions から Node.js 20 非推奨の警告が出ていた:
対応
actions/checkout@v4→@v5(Node.js 24 対応)に更新。対象ワークフロー:
deploy_to_pages.ymlscheduler_daily.ymlclaude-review.yml補足
警告で名指しされたのは
actions/checkout@v4のみ。他のアクション(
ruby/setup-ruby@v1・peaceiris/actions-gh-pages@v4・slackapi/slack-github-action@v1.24.0)は警告対象外のため変更なし。