From 981430dad67fb4e86b9f99ca9bdf0ea52de6990f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 00:49:38 +0000 Subject: [PATCH] chore(deps): update actions/setup-node action to v4 --- .github/workflows/build.yml | 2 +- .github/workflows/lighthouse.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cf35c8685..0b797a200 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: # set up correct version of node - id: nvmrc run: echo ::set-output name=NODE_VERSION::$(cat ../../.nvmrc) - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 with: { node-version: '${{ steps.nvmrc.outputs.NODE_VERSION }}' } - run: yarn diff --git a/.github/workflows/lighthouse.yml b/.github/workflows/lighthouse.yml index 81f9dcd3b..4bb6fe981 100644 --- a/.github/workflows/lighthouse.yml +++ b/.github/workflows/lighthouse.yml @@ -14,7 +14,7 @@ jobs: # set up correct version of node - id: nvmrc run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc) - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 with: { node-version: '${{ steps.nvmrc.outputs.NODE_VERSION }}' } - name: Install dependencies