From ea707901ca3cef3a6ba06bc9a73aba810416e79d Mon Sep 17 00:00:00 2001 From: Jits Date: Mon, 9 Nov 2020 12:47:30 +0000 Subject: [PATCH] Use Node v12 in CI and remove Snyk --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d735d98..93fb8d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: test-and-build: name: 'Test and build' - runs-on: ubuntu-18.04 # Contains node v12.x and Yarn v1.22.x + runs-on: ubuntu-18.04 defaults: run: @@ -20,10 +20,9 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Run Snyk to check for vulnerabilities - uses: snyk/actions/node@master - env: - SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} + - uses: actions/setup-node@v2-beta + with: + node-version: '12' - name: Get yarn cache directory path id: yarn-cache-dir-path