From 756fa039925c933827ab0e2d9ca87246ab044bc3 Mon Sep 17 00:00:00 2001 From: Mathias Schreck Date: Fri, 19 Apr 2024 09:17:33 +0200 Subject: [PATCH] Remove node v14 from build matrix We have updated the lock file which seems to be not compatible with node v14 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 99316a8..0d333b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [14, 16, 18, 20] + node: [16, 18, 20] name: Node ${{ matrix.node }} steps: - uses: actions/checkout@v2