From 8550e77f3819c64f9c6a95d00ccf7f16f10ebd54 Mon Sep 17 00:00:00 2001 From: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com> Date: Fri, 4 Nov 2022 11:23:04 +0000 Subject: [PATCH] Use node16 --- .github/workflows/artifact-tests.yml | 4 ++-- .github/workflows/audit.yml | 4 ++-- .github/workflows/cache-tests.yml | 4 ++-- .github/workflows/releases.yml | 4 ++-- .github/workflows/unit-tests.yml | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/artifact-tests.yml b/.github/workflows/artifact-tests.yml index 54c54307..2618fc8e 100644 --- a/.github/workflows/artifact-tests.yml +++ b/.github/workflows/artifact-tests.yml @@ -24,10 +24,10 @@ jobs: - name: Checkout uses: actions/checkout@v2 - - name: Set Node.js 14.x + - name: Set Node.js 16.x uses: actions/setup-node@v1 with: - node-version: 12.x + node-version: 16.x - run: npm install -g npm@latest # In order to upload & download artifacts from a shell script, certain env variables need to be set that are only available in the diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index f9b8e564..08a2cbc4 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -20,10 +20,10 @@ jobs: - name: Checkout uses: actions/checkout@v2 - - name: Set Node.js 14.x + - name: Set Node.js 16.x uses: actions/setup-node@v1 with: - node-version: 12.x + node-version: 16.x - run: npm install -g npm@latest - name: npm install diff --git a/.github/workflows/cache-tests.yml b/.github/workflows/cache-tests.yml index 6e990a9c..36baee76 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 14.x + - name: Set Node.js 16.x uses: actions/setup-node@v1 with: - node-version: 12.x + node-version: 16.x - run: npm install -g npm@latest # In order to save & restore cache from a shell script, certain env variables need to be set that are only available in the diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 31e66254..25bab43b 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -18,10 +18,10 @@ jobs: - name: verify package exists run: ls packages/${{ github.event.inputs.package }} - - name: Set Node.js 14.x + - name: Set Node.js 16.x uses: actions/setup-node@v1 with: - node-version: 12.x + node-version: 16.x - run: npm install -g npm@latest - name: npm install diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index a6635593..3a05956c 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 14.x + - name: Set Node.js 16.x uses: actions/setup-node@v1 with: - node-version: 12.x + node-version: 16.x - run: npm install -g npm@latest - name: npm install