deps(deps): bump express from 5.1.0 to 5.2.1 #227
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: OSV Scanner | |
| # Scans the repository for vulnerable dependencies using Google's OSV Scanner | |
| # Docs: https://google.github.io/osv-scanner/github-action/ | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| schedule: | |
| - cron: '0 3 * * 1' # Every Monday at 03:00 UTC | |
| workflow_dispatch: | |
| permissions: | |
| actions: read # required by reusable workflow to checkout and run | |
| contents: read # minimal read access | |
| security-events: write # needed to upload SARIF to code scanning | |
| jobs: | |
| osv-scan: | |
| name: OSV Full Scan | |
| uses: google/osv-scanner-action/.github/workflows/[email protected] | |
| with: | |
| # Optional: override default scan arguments (defaults already recursive). Keep explicit for clarity. | |
| scan-args: |- | |
| --recursive | |
| ./ | |
| upload-sarif: true | |
| fail-on-vuln: false | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write |