From 87dc78256d32f9183261e320379f15df8ecc8f9e Mon Sep 17 00:00:00 2001 From: 0xmuralik Date: Tue, 18 Oct 2022 16:26:48 +0530 Subject: [PATCH] exclude gosec G703 --- .github/workflows/security.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 28059733..ec2f1d22 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -24,7 +24,7 @@ jobs: uses: cosmos/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 -exclude=G701 ./...' + args: '-no-fail -fmt sarif -out results.sarif -exclude=G701,G703 ./...' if: "env.GIT_DIFF_FILTERED != ''" - name: Upload SARIF file uses: github/codeql-action/upload-sarif@v1