Files
npm-audit-action/.github/workflows/daily.yml
Naoki Oketani 02cb9c4d3b fix CVE-2022-0235 (#108)
* npm audit fix

* npm run all

* 1.8.4

* update README and daily action to use v1.8.4
2022-01-25 12:30:57 +09:00

21 lines
434 B
YAML

name: daily scan
on:
schedule:
- cron: '0 20 * * *'
jobs:
scan:
name: npm audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install dependencies
run: npm ci
- uses: oke-py/npm-audit-action@v1.8.4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
issue_assignees: oke-py
issue_labels: vulnerability
dedupe_issues: true