From 848a84f04a4b169c75b508c0c947d829f0203dfe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 6 Sep 2025 07:01:33 +0000 Subject: [PATCH] Bump actions/setup-node from 2 to 5 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2 to 5. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v2...v5) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/Code-review.yml | 2 +- .github/workflows/auto-merge.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Code-review.yml b/.github/workflows/Code-review.yml index b1c7ff2..6581cba 100644 --- a/.github/workflows/Code-review.yml +++ b/.github/workflows/Code-review.yml @@ -10,7 +10,7 @@ jobs: steps: - uses: actions/checkout@v2 # 将代码库检出到 Runner 中 - name: Setup Node.js - uses: actions/setup-node@v2 # 安装 Node.js 运行环境和依赖项 + uses: actions/setup-node@v5 # 安装 Node.js 运行环境和依赖项 with: node-version: '14.x' - name: Install dependencies diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml index b79ba41..3f26254 100644 --- a/.github/workflows/auto-merge.yml +++ b/.github/workflows/auto-merge.yml @@ -28,7 +28,7 @@ jobs: uses: actions/checkout@v3 # 使用 actions/checkout 动作 - name: Setup Node.js environment # 步骤名称为:Setup Node.js environment - uses: actions/setup-node@v3 # 使用 actions/setup-node 动作安装 Node.js 环境 + uses: actions/setup-node@v5 # 使用 actions/setup-node 动作安装 Node.js 环境 with: node-version: '14.x'