From bc0386e9964a9bea0934d2914b160cc4bc5af3b8 Mon Sep 17 00:00:00 2001 From: Marko Date: Tue, 24 Jan 2023 16:09:10 +0100 Subject: [PATCH] chore: remove gosec fork (#14752) --- .github/workflows/gosec.yml | 2 +- x/auth/tx/testutil/suite.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gosec.yml b/.github/workflows/gosec.yml index 935432808b..1cd186f2e1 100644 --- a/.github/workflows/gosec.yml +++ b/.github/workflows/gosec.yml @@ -26,7 +26,7 @@ jobs: uses: actions/checkout@v3 - name: Run Gosec Security Scanner - uses: cosmos/gosec@master + 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 ./..." diff --git a/x/auth/tx/testutil/suite.go b/x/auth/tx/testutil/suite.go index 1704d42b10..924f2366ca 100644 --- a/x/auth/tx/testutil/suite.go +++ b/x/auth/tx/testutil/suite.go @@ -16,7 +16,7 @@ import ( ) // TxConfigTestSuite provides a test suite that can be used to test that a TxConfig implementation is correct. -type TxConfigTestSuite struct { //nolint:revive +type TxConfigTestSuite struct { suite.Suite TxConfig client.TxConfig }