Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Security Audit

on:
push:
schedule:
- cron: "0 0 * * *"

permissions:
contents: read

jobs:
check:
permissions:
checks: write
contents: read
issues: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5

- name: Audit check
working-directory: nodejs
run: npx audit-ci --moderate --allowlist GHSA-qm9p-f9j5-w83w

- name: License check
working-directory: nodejs
run: |
npx license-checker-rseidelsohn \
--onlyAllow "MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;MPL-2.0;CC-BY-4.0;0BSD"
File renamed without changes.
Loading