From 5565104e2e0bf2bd8cc83566731637d5aea1822d Mon Sep 17 00:00:00 2001 From: Marc-Antoine Ruel Date: Sat, 19 Oct 2024 17:51:18 -0400 Subject: [PATCH] Silence gosec warning --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b2014a8..79b7d6b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -141,7 +141,7 @@ jobs: run: staticcheck -checks inherit,-SA1019 ./... - name: 'Check: gosec' if: always() - run: gosec -fmt=golint -quiet ./... + run: gosec -fmt=golint -quiet -exclude=G115 ./... # The following checks are not dependent on the OS or go build tags. Only # run them on ubuntu-latest since it's the fastest one. - name: 'Check: no executable was committed (ubuntu)'