From 862ffa5879ecc41972a38069aa44371d15c3e6ab Mon Sep 17 00:00:00 2001 From: junners Date: Sat, 1 Jun 2024 18:44:23 -0700 Subject: [PATCH] build: use node 20 on workflow actions --- .github/workflows/deploy-BETA.yml | 2 +- .github/workflows/deploy-RELEASE.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-BETA.yml b/.github/workflows/deploy-BETA.yml index 28d4c52..1d8d77a 100644 --- a/.github/workflows/deploy-BETA.yml +++ b/.github/workflows/deploy-BETA.yml @@ -36,7 +36,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4.0.2 with: - node-version: 18.x + node-version: 20.x registry-url: https://registry.npmjs.org scope: rubenhalman - name: Install Dependencies diff --git a/.github/workflows/deploy-RELEASE.yml b/.github/workflows/deploy-RELEASE.yml index 2f85c25..26d3f3b 100644 --- a/.github/workflows/deploy-RELEASE.yml +++ b/.github/workflows/deploy-RELEASE.yml @@ -34,7 +34,7 @@ jobs: # Setup .npmrc file to publish to npm - uses: actions/setup-node@v4.0.2 with: - node-version: 18.x + node-version: 20.x registry-url: https://registry.npmjs.org scope: rubenhalman - run: npm ci