Skip to content

kmulvey/govulncheck-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Govulncheck Action

Run go's vulnerability checker.

Create Release

Usage

Describe how to use your action here.

Example workflow

name: My Workflow
on: [push, pull_request]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - name: check for go vulnerabilities
      uses: kmulvey/govulncheck-action@main
      # optional
      with:
        packages: '.'

Inputs

Input Description
package (optional) The package you want to scan, default: "."