Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/elgohr/go-vulncheck-action

Easily using govulncheck in GitHub Actions
https://github.com/elgohr/go-vulncheck-action

actions check golang vulnerabilities

Last synced: 21 days ago
JSON representation

Easily using govulncheck in GitHub Actions

Awesome Lists containing this project

README

        

# Easily using govulncheck in GitHub Actions
[![Release](https://github.com/elgohr/go-vulncheck-action/workflows/Release/badge.svg)](https://github.com/elgohr/go-vulncheck-action/actions/workflows/release.yml)

Using [govulncheck](https://go.dev/blog/vuln)

## Usage

```yaml
name: govulncheck
on: [push]
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- uses: elgohr/go-vulncheck-action@v1
```