This repository was archived by the owner on Nov 7, 2025. It is now read-only.
ci(deps): bump svenstaro/upload-release-action from 2b4adf59f26ea3ed6ddecb8e00f80acc6bc16bd4 to 04733e069f2d7f7f0b4aebc4fbdbce8613b03ccd #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
| name: "Security: Dependency Review" | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, edited] | |
| jobs: | |
| dependency-review: | |
| name: "PR Changes" | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0 | |
| with: | |
| egress-policy: audit | |
| - name: Checkout Repository | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Dependency Review | |
| uses: actions/dependency-review-action@da24556b548a50705dd671f47852072ea4c105d9 # v4.7.1 | |
| with: | |
| # Scan for vulnerabilities and reject PR if severity threshold exceeded | |
| fail-on-severity: critical | |
| # Deny licenses that are problematic for open source projects | |
| deny-licenses: "AGPL-1.0-only, AGPL-1.0-or-later, AGPL-3.0-only, AGPL-3.0-or-later" | |
| # Additional reviewers for dependency-related changes | |
| comment-summary-in-pr: true |