mirror of https://github.com/curbengh/hexo-yam
40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
name: Snyk
|
|
|
|
on:
|
|
schedule:
|
|
# Every day
|
|
- cron: '0 0 * * *'
|
|
pull_request:
|
|
branches:
|
|
- 'dependabot/github_actions/github/codeql-action**'
|
|
|
|
jobs:
|
|
security:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Use Node.js 16.x
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '16.x'
|
|
- name: Install Dependencies
|
|
run: npm install
|
|
- 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
|
|
uses: github/codeql-action/upload-sarif@v2
|
|
with:
|
|
sarif_file: snyk.sarif
|
|
- name: Monitor for vulnerabilities
|
|
uses: snyk/actions/node@master
|
|
env:
|
|
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
|
|
with:
|
|
command: monitor
|