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:
parent
15da0f5344
commit
464d03184e
25
.github/workflows/gosec.yml
vendored
Normal file
25
.github/workflows/gosec.yml
vendored
Normal 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: ./...
|
Loading…
Reference in New Issue
Block a user