Bump actions/checkout from 4.1.1 to 4.2.2 #5
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 - Vulnerability | |
### | |
# This workflow analyzes dependencies introduced by pull requests to help identify security vulnerabilities. | |
# | |
# To override the default configuration preset, set the `DEPENDENCY_REVIEW_CONFIG_PRESET` variable in the repository settings. | |
# The default preset is "vulnerability-high". This preset has this behavior: | |
# | |
# Fail if a dependency is found in the dependency tree with a high severity or greater. | |
### | |
on: | |
merge_group: | |
pull_request: | |
permissions: {} | |
jobs: | |
vulnerability: | |
name: Vulnerabilities | |
permissions: | |
contents: read | |
runs-on: ubuntu-latest | |
# Skip on merge group events | |
if: ${{ github.event_name == 'pull_request' }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
- name: Dependency Review | |
uses: smartcontractkit/.github/actions/dependency-review@dependency-review/v2 | |
with: | |
config-preset: vulnerability-high |