From b2c2504a55ac2a873d471a8a16574f45436f8885 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Thu, 26 Sep 2024 11:34:55 -0400 Subject: [PATCH] ci: remove node 16 from testing matrix Node 16 has been EOL. This commit removes it from the CI matrix. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e300f6ce3e..ab2fc5e865 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: # Remove specific version from 20 when https://github.com/tschaub/mock-fs/issues/380 is fixed - node: [ '22', '20.7.0', '18', '16' ] + node: [ '22', '20.7.0', '18' ] name: Node ${{ matrix.node }} validation steps: - uses: actions/checkout@v4