From fa87a2b6f0ef42a1b8b3047053b60d27a9c062d9 Mon Sep 17 00:00:00 2001 From: Tingluo Huang Date: Wed, 30 Nov 2022 17:14:16 +0000 Subject: [PATCH] . --- .github/workflows/artifact-tests.yml | 6 +++--- .github/workflows/audit.yml | 6 +++--- .github/workflows/cache-tests.yml | 6 +++--- .github/workflows/releases.yml | 6 +++--- .github/workflows/unit-tests.yml | 6 +++--- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/artifact-tests.yml b/.github/workflows/artifact-tests.yml index 373b1cd2..c24b22fd 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 12.x - uses: actions/setup-node@v1 + - name: Set Node.js 16.x + uses: actions/setup-node@v3 with: - node-version: 12.x + node-version: 16.x # In order to upload & download artifacts 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/audit.yml b/.github/workflows/audit.yml index 7da8da9b..54b2e1a4 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 12.x - uses: actions/setup-node@v1 + - name: Set Node.js 16.x + uses: actions/setup-node@v3 with: - node-version: 12.x + node-version: 16.x - name: npm install run: npm install diff --git a/.github/workflows/cache-tests.yml b/.github/workflows/cache-tests.yml index dab446bb..43e95d20 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 12.x - uses: actions/setup-node@v1 + - name: Set Node.js 16.x + uses: actions/setup-node@v3 with: - node-version: 12.x + node-version: 16.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/releases.yml b/.github/workflows/releases.yml index cbabd034..bb679efe 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 12.x - uses: actions/setup-node@v1 + - name: Set Node.js 16.x + uses: actions/setup-node@v3 with: - node-version: 12.x + node-version: 16.x - name: npm install run: npm install diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index f5bcb340..1e51771f 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 12.x - uses: actions/setup-node@v1 + - name: Set Node.js 16.x + uses: actions/setup-node@v3 with: - node-version: 12.x + node-version: 16.x - name: npm install run: npm install