chore(deps): bump undici from 7.26.0 to 7.28.0 #16
Workflow file for this run
This file contains hidden or 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: Dependency Review | |
| # Runs on every Pull Request and scans newly added/updated npm packages | |
| # against the GitHub Advisory Database (known CVEs). | |
| # Fails the PR if a vulnerable or malicious package is introduced. | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| permissions: | |
| contents: read | |
| pull-requests: write # needed to post a summary comment on the PR | |
| jobs: | |
| dependency-review: | |
| name: Scan dependencies for vulnerabilities | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Dependency Review | |
| uses: actions/dependency-review-action@v5 | |
| with: | |
| # Fail the PR on vulnerabilities of this severity or higher | |
| # (moderate, high, critical). Low-severity advisories only warn. | |
| fail-on-severity: moderate | |
| # Post a comment on the PR with a summary of findings | |
| comment-summary-in-pr: always | |
| # Block copyleft licenses incompatible with this project | |
| deny-licenses: GPL-2.0, GPL-3.0 |