From a213f98cb0530ebb368266e4a7f357140da4ca6c Mon Sep 17 00:00:00 2001 From: Anix Date: Thu, 30 Jan 2020 16:41:39 +0530 Subject: [PATCH] chore(GH-action): using ubuntu 16 and removed node 8 from CI --- .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 b2a85b0..5dd6bbf 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -12,10 +12,10 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-16.04 strategy: matrix: - node-version: [8.x, 10.x, 12.x] + node-version: [10.x, 12.x, 13.x] steps: - uses: actions/checkout@v1