Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/debug-ing/go-vuln-scanner
https://github.com/debug-ing/go-vuln-scanner
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/debug-ing/go-vuln-scanner
- Owner: debug-ing
- Created: 2024-12-17T07:27:51.000Z (about 1 month ago)
- Default Branch: master
- Last Pushed: 2024-12-17T07:45:12.000Z (about 1 month ago)
- Last Synced: 2024-12-17T08:36:19.860Z (about 1 month ago)
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Go Vulnerability Scanner GitHub Action 🚀
Easily scan your Go projects for known vulnerabilities using the govulncheck tool provided by golang.org/x/vuln. This GitHub Action integrates seamlessly into your CI/CD pipeline, ensuring your dependencies are up-to-date and free from security risks.
## Usage
Add the following workflow file to your project:.github/workflows/go-vuln-scan.yml:
```
name: Go Vulnerability Scanon:
push:
branches:
- main
pull_request:
branches:
- mainjobs:
vuln-scan:
name: Run Go Vulnerability Scanner
runs-on: ubuntu-lateststeps:
- name: Checkout Code
uses: actions/checkout@v4- name: Run Go Vulnerability Scanner
uses: debug-ing/[email protected]
```