build(deps-dev): Bump happy-dom from 20.9.0 to 20.10.2 #73
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
| # Supply-chain security gate. | |
| # | |
| # Scans the resolved dependency tree (bun.lock) against the OSV.dev database — | |
| # which aggregates GitHub/npm security advisories AND the OpenSSF | |
| # malicious-packages feed — and FAILS on any known-vulnerable or known-malicious | |
| # package (block-on-any-finding policy). OSV-Scanner exits non-zero when it finds | |
| # anything, which fails this job. | |
| # | |
| # Runs on every PR (incl. Dependabot bumps), on pushes to main, and weekly to | |
| # catch advisories disclosed after a dependency was already merged. | |
| # | |
| # Triage / allow-listing unfixable advisories: see SECURITY.md and osv-scanner.toml | |
| # (auto-loaded from the repo root by OSV-Scanner). | |
| # | |
| # Third-party actions are pinned to a commit SHA (we're a supply-chain tool — | |
| # practice what we preach). | |
| name: Supply Chain | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| schedule: | |
| - cron: "17 4 * * 1" # Mondays 04:17 UTC | |
| workflow_dispatch: | |
| # Least privilege: the scan only needs to read the checked-out source. | |
| # contents:read is also available to Dependabot PRs (read-only token), so the | |
| # gate enforces on dependency-bump PRs too. | |
| permissions: | |
| contents: read | |
| jobs: | |
| osv-scanner: | |
| name: OSV-Scanner | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| # No git ops after checkout; don't leave the token in .git/config. | |
| persist-credentials: false | |
| - name: Scan bun.lock for known-vulnerable / malicious dependencies | |
| uses: google/osv-scanner-action/osv-scanner-action@fa4ff678dd5d0a4fa3d628e57af8162873e93cd6 # v2.3.8 | |
| with: | |
| scan-args: |- | |
| --lockfile=bun.lock |