https://github.com/debug-ing/go-vuln-scanner
Go Vulnerability Scanner GitHub Action 🚀
https://github.com/debug-ing/go-vuln-scanner
github-action github-action-vulnerability go go-vulnerability-scanner vulnerability-scanner
Last synced: 4 months ago
JSON representation
Go Vulnerability Scanner GitHub Action 🚀
- Host: GitHub
- URL: https://github.com/debug-ing/go-vuln-scanner
- Owner: debug-ing
- Created: 2024-12-17T07:27:51.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-12-17T07:45:12.000Z (11 months ago)
- Last Synced: 2025-03-14T21:49:32.545Z (8 months ago)
- Topics: github-action, github-action-vulnerability, go, go-vulnerability-scanner, vulnerability-scanner
- Language: Go
- Homepage:
- 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 Scan
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
vuln-scan:
name: Run Go Vulnerability Scanner
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Run Go Vulnerability Scanner
uses: debug-ing/go-vuln-scanner@v1.0.0
```