Skip to content

opzkit/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.

Usage

See action.yml

Basic

name: Go vulnerabilities check
on: [ push ]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: check for go vulnerabilities
        uses: opzkit/[email protected]
        # optional
        with:
          go-version: '1.19'
          govuln-version: 'latest'
          packages: './...'

Inputs

Input Description
package (optional) The package you want to scan, default: "./..."
go-version (optional) The go version to use, default: "1.19"
go-version-file (optional) Path to the go.mod file to use for determining go version
check-latest (optional) Check for latest available go version that satisfies the version spec, default default: "false"
govuln-version (optional) The govuln version to use, default: "latest"