chore: add gosec step (#793)

* add gosec step

* fix: disable build on pull request

Co-authored-by: Simone Basso <bassosimone@gmail.com>
This commit is contained in:
Ain Ghazal 2022-06-03 21:41:15 +02:00 committed by GitHub
parent 15da0f5344
commit 464d03184e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

25
.github/workflows/gosec.yml vendored Normal file
View File

@ -0,0 +1,25 @@
# runs gosec security scanner
name: gosec
on:
push:
branches:
- "master"
- "release/**"
jobs:
gosec:
runs-on: ubuntu-20.04
env:
GO111MODULE: on
strategy:
matrix:
go:
- "1.18.2"
steps:
- name: Checkout Source
uses: actions/checkout@v2
- name: Run Gosec security scanner
continue-on-error: true
uses: securego/gosec@master
with:
args: ./...