From 625a300fc5efdfbbb2df5d9a1fa7120e4dbc1f55 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 00:36:37 +0000 Subject: [PATCH] chore(deps): update actions/setup-node action to v4 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b2437cb6..81d9da89 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: key: ${{runner.os}}-node${{matrix.node-version}}-yarn-${{hashFiles('**/yarn.lock')}} restore-keys: ${{runner.os}}-node${{matrix.node-version}}-yarn- - name: Set up Node.js v${{matrix.node-version}} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{matrix.node-version}} - run: yarn @@ -48,7 +48,7 @@ jobs: key: ${{runner.os}}-node${{env.DEPLOY_NODE_VERSION}}-yarn-${{hashFiles('**/yarn.lock')}} restore-keys: ${{runner.os}}-node${{env.DEPLOY_NODE_VERSION}}-yarn- - name: Set up Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{env.DEPLOY_NODE_VERSION}} - run: yarn