From 295958f22d3d68d6a81c8c05c99aec21db7f95b9 Mon Sep 17 00:00:00 2001 From: Niklas Mischkulnig <4586894+mischnic@users.noreply.github.com> Date: Mon, 23 Oct 2023 05:13:04 +0200 Subject: [PATCH] Use modern node versions in CI (#9323) Co-authored-by: mattcompiles --- .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 c8b4119c678..83fc54eace9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,7 @@ jobs: name: Unit tests (${{matrix.os}}, Node ${{matrix.node}}) strategy: matrix: - node: [14, 16] + node: [18, 20] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{matrix.os}} steps: @@ -75,7 +75,7 @@ jobs: name: Integration tests (${{matrix.os}}, Node ${{matrix.node}}) strategy: matrix: - node: [14, 16] + node: [18, 20] os: [ubuntu-latest, macos-latest, windows-latest] # These tend to be quite flakey, so one failed instance shouldn't stop # others from potentially succeeding