From ff301b034527593e2947a5c21d749f26f5882666 Mon Sep 17 00:00:00 2001 From: Mateusz Gozdek Date: Sat, 31 Oct 2020 19:23:49 +0100 Subject: [PATCH] .github/workflows/ci.yaml: downgrade golangci-lint to v1.31.0 As v1.32.1 doesn't seem to have 'make' command anymore. Signed-off-by: Mateusz Gozdek --- .github/workflows/ci.yaml | 2 +- .golangci.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0a75ce399..138c98012 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -27,7 +27,7 @@ jobs: lint: name: Lint runs-on: ubuntu-latest - container: golangci/golangci-lint:v1.32.1 + container: golangci/golangci-lint:v1.31.0 timeout-minutes: 10 steps: diff --git a/.golangci.yml b/.golangci.yml index c744f47d4..bef6b0716 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -19,9 +19,9 @@ linters: - dogsled - dupl - errcheck - - errorlint + #- errorlint - exhaustive - - exhaustivestruct + #- exhaustivestruct - exportloopref - funlen - gochecknoinits @@ -55,13 +55,13 @@ linters: - structcheck - stylecheck - testpackage - - tparallel + #- tparallel - typecheck - unconvert - unparam - varcheck - whitespace - - wrapcheck + #- wrapcheck - wsl disable: - gci