From acf2d643f9b6926f6abfdebc6ef102d0bd797b1b Mon Sep 17 00:00:00 2001 From: David Mehren Date: Sat, 14 Aug 2021 16:26:14 +0200 Subject: [PATCH] CI: Remove Node 15 from matrix Node 15 is EOL since 01 June 2021 See https://endoflife.date/nodejs Signed-off-by: David Mehren --- .github/workflows/node.js.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 791b29d81..339b10394 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -39,7 +39,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [12.x, 14.x, 15.x, 16.x] + node-version: [12.x, 14.x, 16.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} @@ -63,7 +63,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [12.x, 14.x, 15.x, 16.x] + node-version: [12.x, 14.x, 16.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }}