Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/debug-ing/go-vuln-scanner


https://github.com/debug-ing/go-vuln-scanner

Last synced: 7 days ago
JSON representation

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/[email protected]
```