From 19a6d70d0fc4dd0b773511e378d1ed8075f5fc85 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Thu, 11 Dec 2025 02:39:41 +0800 Subject: [PATCH] Add Node.js setup step to Renovate workflow (#230) * Initial plan * Add actions/setup-node@v6 step after checkout Co-authored-by: yanhao98 <37316281+yanhao98@users.noreply.github.com> * Add node-version parameter to setup-node step Co-authored-by: yanhao98 <37316281+yanhao98@users.noreply.github.com> * Update node-version to 'node' for latest version Co-authored-by: yanhao98 <37316281+yanhao98@users.noreply.github.com> * Update node-version to 'lts/*' for latest LTS Co-authored-by: yanhao98 <37316281+yanhao98@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: yanhao98 <37316281+yanhao98@users.noreply.github.com> --- .github/workflows/检查配置.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/检查配置.yaml b/.github/workflows/检查配置.yaml index d39257c..7110d54 100644 --- a/.github/workflows/检查配置.yaml +++ b/.github/workflows/检查配置.yaml @@ -12,6 +12,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - uses: actions/setup-node@v6 + with: + node-version: 'lts/*' - run: npx --yes --package renovate@latest renovate-config-validator if: always() - run: npx --yes --package renovate@latest renovate-config-validator ./default.json5