Uh oh!
There was an error while loading. Please reload this page.
renovate ワークフローの Node バージョン不足を修正 - #4
Merged
Merged
Conversation
Renovate 43 は Node ^24.11.0 を要求するが runner 既定は 22 で "Unsupported node environment" により失敗していた。actions/setup-node で Node 24 を入れて解消する。 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Uh oh!
There was an error while loading. Please reload this page.
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 freeto 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 #3 でマージした self-hosted Renovate ワークフローが手動実行で失敗したため修正する。
原因
Renovate 43 は Node
^24.11.0を要求するが、runner 既定の Node は 22.22.3 のためUnsupported node environment detectedで exit 1 になっていた。なお devbox は
binarySource=globalで正常に動作し、devbox マネージャの依存抽出(depCount: 8)まで成功していた。問題は Node バージョンのみ。変更の概要
renovate.ymlにactions/setup-node(v6.4.0, SHA pin)で Node 24 を入れるステップを追加。レビューのポイント
renovate@43の要求(^24.11.0)を満たす。Renovate のメジャーを上げる際は Node 要求も見直す。検証方法
workflow_dispatch)で再実行し、Unsupported nodeが消え Renovate が完走することを確認。🤖 Generated with Claude Code