From 7a922880b9cfcedb10f3a99a88a23bbfa603adab Mon Sep 17 00:00:00 2001 From: Kin Numaru Date: Sat, 4 Jun 2022 16:21:25 +0200 Subject: [PATCH] :green_heart: Upgrade the node version used to v16 --- .github/workflows/cd.yml | 4 ++-- .github/workflows/ci.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 33ea446..1933c50 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -13,9 +13,9 @@ jobs: uses: actions/checkout@v2 - name: Install Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: - node-version: 10.x + node-version: 16 - name: Install the package run: npm install diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 993626e..ed61481 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,9 +20,9 @@ jobs: uses: actions/checkout@v2 - name: Install Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: - node-version: 10.x + node-version: 16 - name: Install the package run: npm install