From 64ab721a0879d084ebb9fea30de4c73d2b6ba975 Mon Sep 17 00:00:00 2001 From: Jacob Gadikian Date: Fri, 31 Mar 2023 15:55:57 +0700 Subject: [PATCH] ci: disable gosec g101 in actions (#15650) --- .github/workflows/gosec.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gosec.yml b/.github/workflows/gosec.yml index 1cd186f2e1..a92206efa9 100644 --- a/.github/workflows/gosec.yml +++ b/.github/workflows/gosec.yml @@ -29,7 +29,7 @@ jobs: uses: securego/gosec@master with: # we let the report trigger content trigger a failure using the GitHub Security features. - args: "-no-fail -fmt sarif -out results.sarif ./..." + args: "-exclude=G101 -no-fail -fmt sarif -out results.sarif ./..." - name: Upload SARIF file uses: github/codeql-action/upload-sarif@v2