From 3b997279478b67f9e535ae9af2f673fef7ad3ec3 Mon Sep 17 00:00:00 2001 From: snowiow Date: Wed, 3 Jan 2024 09:02:39 +0100 Subject: [PATCH] use node 20 --- .github/workflows/ci-checks.yml | 4 ++-- .github/workflows/publish.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-checks.yml b/.github/workflows/ci-checks.yml index 6a065eda..807a1da3 100644 --- a/.github/workflows/ci-checks.yml +++ b/.github/workflows/ci-checks.yml @@ -11,10 +11,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Use node.js 16.x + - name: Use node.js 20.x uses: actions/setup-node@v4 with: - node-version: 16 + node-version: 20 - name: NPM Install run: npm ci - name: Check Format diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5ba1c318..7bb49b45 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,10 +12,10 @@ jobs: uses: actions/checkout@v4 with: ref: ${{ github.event.release.tag_name }} - - name: Use node.js 16.x + - name: Use node.js 20.x uses: actions/setup-node@v4 with: - node-version: 16 + node-version: 20 - name: NPM Install run: npm ci - name: Check Format