From f4ef9cacf6f74c53f1ce3c4d1ac2480e5f534060 Mon Sep 17 00:00:00 2001 From: Sampo Silvennoinen <20028934+stscoundrel@users.noreply.github.com> Date: Sat, 5 Oct 2024 17:07:00 +0300 Subject: [PATCH] CI: add Node.js 20 & 22 --- .github/workflows/node.js.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 5af7f9e1..a9b20155 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -15,11 +15,11 @@ jobs: strategy: matrix: - node-version: [18.x] + node-version: [18.x, 20.x, 22.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c2ac4d79..9ec76b8a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,12 +14,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: Setup Node.js uses: actions/setup-node@v4 with: cache: npm - node-version: 18 + node-version: 22 - name: Install dependencies run: npm ci - name: Release