deps(deps): Bump the logging group across 1 directory with 3 updates #1
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
| # ============================================================ | |
| # Dependency Review | |
| # | |
| # Runs on every pull request targeting `main` and blocks | |
| # merges that introduce: | |
| # • dependencies with known CVEs (severity ≥ moderate) | |
| # • dependencies under non-permissive licences | |
| # | |
| # No secrets required — uses secrets.GITHUB_TOKEN automatically. | |
| # ============================================================ | |
| name: Dependency Review | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| # ────────────────────────────────────────────────────────────── | |
| jobs: | |
| dependency-review: | |
| name: 🔒 Dependency Review | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Dependency Review | |
| uses: actions/dependency-review-action@v5 | |
| with: | |
| fail-on-severity: moderate | |
| comment-summary-in-pr: always | |
| vulnerability-check: true | |
| license-check: true | |
| allow-licenses: >- | |
| Apache-2.0, | |
| MIT, | |
| BSD-2-Clause, | |
| BSD-3-Clause, | |
| ISC, | |
| LGPL-2.0-only, | |
| LGPL-2.1-only, | |
| LGPL-2.1-or-later, | |
| EPL-1.0, | |
| EPL-2.0, | |
| CDDL-1.0, | |
| CC0-1.0 |