From 55a185616bf0c7c315aaf3c81701e9125865325a Mon Sep 17 00:00:00 2001 From: Jeroen de Bruijn Date: Thu, 22 Jun 2023 16:56:44 +0200 Subject: [PATCH] ci: include Node.js v20 in testing and drop, almost EOL, v19 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 560be500..2c0d6703 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - nodeVersion: [16, 18, 19] + nodeVersion: [16, 18, 20] uses: vidavidorra/.github/.github/workflows/node-build.yml@831cdfeaf21957af495b3d518c1a877d5ffd3253 # v2.1.1 with: nodeVersion: ${{ matrix.nodeVersion }} @@ -23,7 +23,7 @@ jobs: strategy: fail-fast: false matrix: - node: [16, 18, 19] + node: [16, 18, 20] uses: vidavidorra/.github/.github/workflows/node-test.yml@831cdfeaf21957af495b3d518c1a877d5ffd3253 # v2.1.1 with: nodeVersion: ${{ matrix.node }}