From eb2438c176cd454a1f38321f400c3f542a693787 Mon Sep 17 00:00:00 2001 From: Chun Date: Tue, 7 Nov 2023 17:53:47 +0000 Subject: [PATCH] ci: upgrade node version in pipeline from 12 to 18 --- .github/workflows/examples.yml | 4 ++-- .github/workflows/pr.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 6c7160e..791a70a 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -11,9 +11,9 @@ jobs: - name: Checkout uses: actions/checkout@v1 - name: Setup Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: - node-version: 12 + node-version: 16 - name: Cache node modules uses: actions/cache@v1 with: diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 19709c0..571a159 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -9,9 +9,9 @@ jobs: steps: - uses: actions/checkout@v1 - name: Setup Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: - node-version: 12 + node-version: 16 - name: Cache node modules uses: actions/cache@v1 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index af1d6c6..de06c1d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,9 +12,9 @@ jobs: - name: Checkout uses: actions/checkout@v1 - name: Setup Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: - node-version: 12 + node-version: 16 - name: Cache node modules uses: actions/cache@v1 with: