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: ./...