From 52d6f2b00e0df53231ba2641bf8d501b5203411e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 19:47:56 +0000 Subject: [PATCH] chore(deps): update actions/setup-node action to v6 --- .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 cf35c86855..5ca5576504 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@v6 with: { node-version: '${{ steps.nvmrc.outputs.NODE_VERSION }}' } - run: yarn diff --git a/.github/workflows/lighthouse.yml b/.github/workflows/lighthouse.yml index 81f9dcd3b8..efea98f6d8 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@v6 with: { node-version: '${{ steps.nvmrc.outputs.NODE_VERSION }}' } - name: Install dependencies