Skip to content

[Snyk] Security upgrade ejs from 1.0.0 to 3.1.10 #44

[Snyk] Security upgrade ejs from 1.0.0 to 3.1.10

[Snyk] Security upgrade ejs from 1.0.0 to 3.1.10 #44

Workflow file for this run

name: Snyk CI
on:
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
strategy:
matrix:
node: ['16']
steps:
- uses: actions/checkout@v1
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: NPM Install
run: npm install
- name: Install Snyk
run: sudo npm install -g snyk
- name: Snyk Authenticate
run: snyk auth "$SNYK_TOKEN"
- name: Snyk Test
run: snyk test --file=Pipfile --severity-threshold=high --fail-on=upgradable