From e4a1d18aad4dea4c3c81a6f04fb64debff909e98 Mon Sep 17 00:00:00 2001 From: Ain Tohvri Date: Wed, 25 Oct 2023 19:04:18 +0200 Subject: [PATCH] Remove Node.js v16 support as per Node roadmap --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index efa29112..799b2464 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,11 +18,11 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - node: [16, 17, 18, 19, 20] + node: [17, 18, 19, 20] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} - run: npm install @@ -54,8 +54,8 @@ jobs: if: startsWith(github.ref, 'refs/tags/') needs: test steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 20 registry-url: 'https://registry.npmjs.org'