From 081534ce24c2dd98d46c3f32c1e55493c1cc1669 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 20 May 2023 07:58:50 +0200 Subject: [PATCH] Upgrade GitHub Actions https://github.com/nodejs/release#readme https://github.com/actions/checkout/releases https://github.com/actions/setup-node/releases --- .github/workflows/build.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e307356..03e476a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,13 +9,13 @@ jobs: strategy: matrix: # the Node.js versions to build on - node-version: [12.x, 13.x, 14.x, 15.x, 16.x] + node-version: [14.x, 16.x, 18.x, 19.x, 20.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} @@ -27,5 +27,3 @@ jobs: - name: Build the project run: npm run build - env: - CI: true