From bb1e5fcb684566b96a8c2547e99565ab009cfc89 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Wed, 15 Mar 2023 15:30:51 +0100 Subject: [PATCH] build: pin node version to 19.7 in CI MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit https://github.com/nodejs/node/issues/47096 Signed-off-by: Jérôme Benoit --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 48887ca7..1ebf798a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [windows-latest, macos-latest, ubuntu-latest] - node: ['16.x', '18.x', '19.x'] + node: ['16.x', '18.x', '19.7,x'] steps: - uses: actions/checkout@v3 with: @@ -46,7 +46,7 @@ jobs: strategy: matrix: os: [windows-latest, macos-latest, ubuntu-latest] - node: ['16.x', '18.x', '19.x'] + node: ['16.x', '18.x', '19.7.x'] steps: - uses: actions/checkout@v3 with: -- 2.34.1