scheduled npm audit #175
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: scheduled npm audit | |
on: | |
schedule: | |
- cron: '0 10 * * *' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
scan: | |
name: npm audit | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
node-version: [ 18.x ] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
cache-dependency-path: | | |
package-lock.json | |
frontend/package-lock.json | |
- name: Install dependencies | |
run: | | |
npm install | |
echo "show outdated (if any)" | |
npm outdated --depth=3 || echo "you must think about update your dependencies :)" | |
- name: Audit | |
uses: oke-py/[email protected] | |
with: | |
audit_level: moderate | |
# need repository /settings/actions > workflow permissions > R+W permission | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
issue_labels: cybersecurity,bot-created | |
dedupe_issues: true | |
production_flag: true |