2020-09-05 12:43:05 +00:00
|
|
|
name: Snyk
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
# Every day
|
2020-09-05 12:47:23 +00:00
|
|
|
- cron: '0 0 * * *'
|
2022-05-17 00:35:52 +00:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- 'dependabot/github_actions/github/codeql-action**'
|
2020-09-05 12:43:05 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
security:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-10-09 07:58:57 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-05-17 00:40:28 +00:00
|
|
|
- name: Use Node.js 16.x
|
2022-10-09 07:58:57 +00:00
|
|
|
uses: actions/setup-node@v3
|
2020-09-09 05:23:11 +00:00
|
|
|
with:
|
2022-05-17 00:40:28 +00:00
|
|
|
node-version: '16.x'
|
2020-09-09 05:23:11 +00:00
|
|
|
- name: Install Dependencies
|
|
|
|
run: npm install
|
2022-05-13 01:00:45 +00:00
|
|
|
- name: Run Snyk to check for vulnerabilities
|
|
|
|
uses: snyk/actions/node@master
|
|
|
|
continue-on-error: true # To make sure that SARIF upload gets called
|
|
|
|
env:
|
|
|
|
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
|
|
|
|
with:
|
|
|
|
command: test
|
|
|
|
args: --sarif-file-output=snyk.sarif
|
|
|
|
- name: Upload result to GitHub Code Scanning
|
2022-05-17 00:36:57 +00:00
|
|
|
uses: github/codeql-action/upload-sarif@v2
|
2022-05-13 01:00:45 +00:00
|
|
|
with:
|
|
|
|
sarif_file: snyk.sarif
|
2022-05-13 01:27:05 +00:00
|
|
|
- name: Monitor for vulnerabilities
|
2020-09-05 12:43:05 +00:00
|
|
|
uses: snyk/actions/node@master
|
|
|
|
env:
|
|
|
|
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
|
|
|
|
with:
|
|
|
|
command: monitor
|