Update lingo.go #17
This file contains 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
# Govulncheck for push and pull_request, fails the steps if vulnerabilities are found | |
name: Govulncheck | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
vulnerability-scan: | |
runs-on: ubuntu-latest | |
name: Vulnerability Scan | |
steps: | |
- uses: golang/govulncheck-action@v1 | |
with: | |
go-package: ./... |