From b64ea971dfa3727de90cf7ce352d6cf4edafefb7 Mon Sep 17 00:00:00 2001 From: rmccar <42928680+rmccar@users.noreply.github.com> Date: Tue, 27 Feb 2024 08:11:11 +0000 Subject: [PATCH] update setup-node to use node 20 in actions (#3050) --- .github/workflows/lighthouse-ci.yml | 2 +- .github/workflows/macro-and-script-tests.yml | 2 +- .github/workflows/npm-bundle.yml | 2 +- .github/workflows/release.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lighthouse-ci.yml b/.github/workflows/lighthouse-ci.yml index 3750c9e400..22347872e3 100644 --- a/.github/workflows/lighthouse-ci.yml +++ b/.github/workflows/lighthouse-ci.yml @@ -13,7 +13,7 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} - name: Install Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version-file: ".nvmrc" - name: Install dependencies diff --git a/.github/workflows/macro-and-script-tests.yml b/.github/workflows/macro-and-script-tests.yml index 13af4affbc..203e6947ae 100644 --- a/.github/workflows/macro-and-script-tests.yml +++ b/.github/workflows/macro-and-script-tests.yml @@ -13,7 +13,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Install Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version-file: ".nvmrc" - name: Install dependencies diff --git a/.github/workflows/npm-bundle.yml b/.github/workflows/npm-bundle.yml index 050fb964b0..12d729c492 100644 --- a/.github/workflows/npm-bundle.yml +++ b/.github/workflows/npm-bundle.yml @@ -15,7 +15,7 @@ jobs: with: ref: ${{ github.event.release.target_commitish }} - name: Install Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version-file: ".nvmrc" registry-url: https://registry.npmjs.org/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ce2e8dfd8b..22ad0c0815 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version-file: ".nvmrc" - name: Install dependencies