add vulncheck action to CI (#15676)

Signed-off-by: Andreas Auernhammer <hi@aead.dev>
This commit is contained in:
Andreas Auernhammer 2022-09-12 19:10:30 +02:00 committed by GitHub
parent ff9a74b91f
commit d6132b854f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

17
.github/workflows/vulncheck.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: VulnCheck
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
vulncheck:
name: Analysis
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Check for vulnerabilities
uses: kmulvey/govulncheck-action@v1.0.0