chore(deps): bump actions/dependency-review-action from 4 to 5 #7
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 | |
| on: | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| dependency-review: | |
| name: dependency-review | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # The action hard-errors until the repo's Dependency Graph feature is | |
| # enabled (Settings > Code security). continue-on-error keeps the job | |
| # from blocking PRs before an admin flips that switch; once enabled the | |
| # step reports real findings. Flip this to a hard gate after enabling. | |
| - name: Dependency Review | |
| continue-on-error: true | |
| uses: actions/dependency-review-action@v5 | |
| with: | |
| fail-on-severity: high |