Skip to content

Add workflow govulncheck to detect vulnerabilitied #1

Add workflow govulncheck to detect vulnerabilitied

Add workflow govulncheck to detect vulnerabilitied #1

# This file adheres to the YAML5 style.
{
"name": "Dependence Review",
"on": ["pull_request"],
"permissions": {
"contents": "read",
},
"jobs": {
"dependence-review": {
"name": "Dependence Review",
"runs-on": "ubuntu-latest",
"steps": [
{
"name": "Checkout repository",
"uses": "actions/checkout@v4"
},
{
"name": "Dependency Review",
"uses": "actions/dependency-review-action@v4"
},
],
},
},
}