From 678e4f61d8ffc78d92f5e40b2a2edf648cde5201 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 23:44:34 +0000 Subject: [PATCH] chore(deps): update actions/setup-node action to v7 --- .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..53bf9ff48 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@v7 with: { node-version: '${{ steps.nvmrc.outputs.NODE_VERSION }}' } - run: yarn diff --git a/.github/workflows/lighthouse.yml b/.github/workflows/lighthouse.yml index 81f9dcd3b..d6f704eb3 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@v7 with: { node-version: '${{ steps.nvmrc.outputs.NODE_VERSION }}' } - name: Install dependencies