From 7cb82599d485499a7455046729e60455599d9bfd Mon Sep 17 00:00:00 2001 From: Sankalp Kotewar <98868223+kotewar@users.noreply.github.com> Date: Wed, 3 Aug 2022 13:41:19 +0000 Subject: [PATCH] Reverted node versions to 12.x in workflows --- .github/workflows/cache-tests.yml | 4 ++-- .github/workflows/unit-tests.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cache-tests.yml b/.github/workflows/cache-tests.yml index 9a0d6d67..dab446bb 100644 --- a/.github/workflows/cache-tests.yml +++ b/.github/workflows/cache-tests.yml @@ -24,10 +24,10 @@ jobs: - name: Checkout uses: actions/checkout@v2 - - name: Set Node.js 16.x + - name: Set Node.js 12.x uses: actions/setup-node@v1 with: - node-version: 16.x + node-version: 12.x # In order to save & restore cache from a shell script, certain env variables need to be set that are only available in the # node context. This runs a local action that gets and sets the necessary env variables that are needed diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 3747bdaa..f5bcb340 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -25,10 +25,10 @@ jobs: - name: Checkout uses: actions/checkout@v2 - - name: Set Node.js 16.x + - name: Set Node.js 12.x uses: actions/setup-node@v1 with: - node-version: 16.x + node-version: 12.x - name: npm install run: npm install