From 464d03184e11d138b1828db7e69ac4c03bb42721 Mon Sep 17 00:00:00 2001 From: Ain Ghazal <99027643+ainghazal@users.noreply.github.com> Date: Fri, 3 Jun 2022 21:41:15 +0200 Subject: [PATCH] chore: add gosec step (#793) * add gosec step * fix: disable build on pull request Co-authored-by: Simone Basso --- .github/workflows/gosec.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/gosec.yml diff --git a/.github/workflows/gosec.yml b/.github/workflows/gosec.yml new file mode 100644 index 0000000..d1341bb --- /dev/null +++ b/.github/workflows/gosec.yml @@ -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: ./...