From 600a0d15b152a6e6db5e9cc59d9799fdea78f0d4 Mon Sep 17 00:00:00 2001 From: Danny Avila <110412045+danny-avila@users.noreply.github.com> Date: Sun, 6 Aug 2023 13:08:23 -0400 Subject: [PATCH] fix(backend-review.yml): update Node.js version from 19.x to 20.x (#767) fix(frontend-review.yml): update Node.js version from 19.x to 20.x --- .github/workflows/backend-review.yml | 4 ++-- .github/workflows/frontend-review.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/backend-review.yml b/.github/workflows/backend-review.yml index 11b4b562c0..3e9afa2e09 100644 --- a/.github/workflows/backend-review.yml +++ b/.github/workflows/backend-review.yml @@ -23,10 +23,10 @@ jobs: CREDS_IV: ${{ secrets.CREDS_IV }} steps: - uses: actions/checkout@v2 - - name: Use Node.js 19.x + - name: Use Node.js 20.x uses: actions/setup-node@v3 with: - node-version: 19.x + node-version: 20 cache: 'npm' - name: Install dependencies diff --git a/.github/workflows/frontend-review.yml b/.github/workflows/frontend-review.yml index acc43b503e..1401af97f4 100644 --- a/.github/workflows/frontend-review.yml +++ b/.github/workflows/frontend-review.yml @@ -18,10 +18,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Use Node.js 19.x + - name: Use Node.js 20.x uses: actions/setup-node@v3 with: - node-version: 19.x + node-version: 20 cache: 'npm' - name: Install dependencies