diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index acce859..4029975 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -15,5 +15,5 @@ jobs: uses: golangci/golangci-lint-action@v3 with: # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. - version: v1.47 - args: --timeout 5m \ No newline at end of file + version: latest + args: --timeout 10m diff --git a/.golangci.yml b/.golangci.yml index c233fdf..014dd27 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -27,7 +27,6 @@ issues: linters: disable-all: true enable: - - deadcode - errcheck - goimports - gosimple @@ -36,7 +35,6 @@ linters: - staticcheck - unconvert - unused - - varcheck fast: true # options for analysis running