mirror of https://github.com/curbengh/hexo-yam
25 lines
532 B
YAML
25 lines
532 B
YAML
name: Snyk
|
|
|
|
on:
|
|
schedule:
|
|
# Every day
|
|
- cron: '0 0 * * *'
|
|
|
|
jobs:
|
|
security:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.4
|
|
- name: Use Node.js 14.x
|
|
uses: actions/setup-node@v2.4.1
|
|
with:
|
|
node-version: '14.x'
|
|
- name: Install Dependencies
|
|
run: npm install
|
|
- name: Run Snyk to check for vulnerabilities
|
|
uses: snyk/actions/node@master
|
|
env:
|
|
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
|
|
with:
|
|
command: monitor
|