From 6642dfea6f51334db240b65ba4afb0dcdce3cdf8 Mon Sep 17 00:00:00 2001 From: James Ives Date: Mon, 27 Nov 2023 21:43:58 -0500 Subject: [PATCH] fix: update runner scripts to match node version --- .github/workflows/build.yml | 4 ++-- .github/workflows/production.yml | 2 +- .github/workflows/publish.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eae041f03..ed39ab9f2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: 16 + node-version: '20.10.0' registry-url: 'https://registry.npmjs.org' - name: Install Yarn @@ -44,7 +44,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: 16 + node-version: '20.10.0' registry-url: 'https://registry.npmjs.org' - name: Install Yarn diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index 35fd3c5a8..03b6d6468 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: 16 + node-version: '20.10.0' registry-url: 'https://registry.npmjs.org' - name: Install Yarn diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0bb12e54e..9221635fb 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,7 +17,7 @@ jobs: # Setup .npmrc file to publish to npm - uses: actions/setup-node@v4 with: - node-version: 16 + node-version: '20.10.0' registry-url: 'https://registry.npmjs.org' scope: '@jamesives' @@ -42,7 +42,7 @@ jobs: # Setup .npmrc file to publish to GitHub Packages - uses: actions/setup-node@v4 with: - node-version: 16 + node-version: '20.10.0' registry-url: 'https://npm.pkg.github.com' scope: '@jamesives'