From ac6004e5ad5591f1083f8537a3d85ed29bc5ed52 Mon Sep 17 00:00:00 2001 From: vimux Date: Sat, 3 Apr 2021 12:57:58 -0400 Subject: [PATCH] =?UTF-8?q?CI:=20upgrade=20NodeJS=20(10.x=20=E2=86=92=2014?= =?UTF-8?q?.x)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit NodeJS 10 is reaching end of life soon (30 April 2021), it's time to move to the active LTS version: NodeJS 14. https://nodejs.org/en/about/releases/ --- .github/workflows/ci-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 0580f4f..9c7f1b2 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: node: - - '10.x' + - '14.x' steps: - uses: actions/checkout@v2