From f497cbde4426e44a1d0f8ed3b71da2f9ed58c1fc Mon Sep 17 00:00:00 2001 From: arthurlw Date: Tue, 2 Dec 2025 10:18:12 -0800 Subject: [PATCH] Added gosec workflow --- .github/workflows/security.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 73b31f5..b9ee403 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -41,3 +41,15 @@ jobs: run: | SCANNER="$(go env GOPATH)/bin/osv-scanner" $SCANNER --recursive --skip-git . || true + gosec: + name: gosec + runs-on: ubuntu-latest + env: + GO111MODULE: on + steps: + - name: Checkout Source + uses: actions/checkout@v3 + - name: Run Gosec Security Scanner + uses: securego/gosec@master + with: + args: ./...