From 8dc29caa1b0020020bc41a3a74334c161fb36343 Mon Sep 17 00:00:00 2001 From: JellyBrick Date: Sun, 29 Oct 2023 06:02:03 +0900 Subject: [PATCH] chore(actions): update setup-node v3 to v4 --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f09e7827..0b2f4617 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,7 +35,7 @@ jobs: - name: Setup NodeJS for macOS if: startsWith(matrix.os, 'macOS') - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ env.NODE_VERSION }} @@ -96,14 +96,14 @@ jobs: - name: Setup NodeJS if: startsWith(matrix.os, 'macOS') != true - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ env.NODE_VERSION }} cache: 'pnpm' - name: Setup NodeJS for macOS if: startsWith(matrix.os, 'macOS') - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ env.NODE_VERSION }}