From 4533f56dffd73f32dbb7a9ed31f7f6b213a50340 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 28 Oct 2023 07:59:53 +0000 Subject: [PATCH] Bump actions/setup-node from 2 to 4 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2 to 4. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/setup-node 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 99bd6eb..29b2cf5 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@v4 # 安装 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..cc43080 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@v4 # 使用 actions/setup-node 动作安装 Node.js 环境 with: node-version: '14.x'