🌱 bump the github-actions group with 3 updates #208
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" ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| dependency-review: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - id: checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: 'Dependency Review' | |
| uses: actions/dependency-review-action@a1d282b36b6f3519aa1f3fc636f609c47dddb294 # v5.0.0 | |
| with: | |
| # fail if a pull request introduce vulnerabilities of level "low" or higher | |
| fail-on-severity: low | |
| # allowed licenses in SPDX format, the action will fail if a new dependencies with a license not in this list is introduced | |
| # if the license cant be detected, the action will inform but not fail | |
| #allow-licenses: 'Apache-2.0, MIT, GPL-3.0-or-later, MPL-2.0' | |
| # threshold for the OpenSSF Scorecard level, the action will get a warning in the CI | |
| warn-on-openssf-scorecard-level: 3 |