From ee9d5c5828b266ec9b8ee2627c095abd6aeb2ff8 Mon Sep 17 00:00:00 2001 From: inu-tsuki Date: Tue, 7 Jul 2026 20:34:19 +0800 Subject: [PATCH] chore(ci): bump actions to Node 24 runtime MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 消除 GitHub Actions 的 Node.js 20 deprecation 警告: actions/checkout v4 -> v7, setup-node v4 -> v6, pnpm/action-setup v4 -> v6. 用法无参数变化,仅 runtime 升级。 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 816e1b0..fa7eb5b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,13 +9,13 @@ jobs: checks: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - - uses: pnpm/action-setup@v4 + - uses: pnpm/action-setup@v6 with: version: 10 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: 22 cache: pnpm