From 4fa66bd46c000fbbbab4408b8a6ded0e7c15b98c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Zamanillo?= Date: Sun, 13 Dec 2020 22:07:00 +0100 Subject: [PATCH] bump golangci-lint to 1.33 --- .github/workflows/build.yaml | 4 ++-- .golangci.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ead969e43..5e6435e01 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,10 +13,10 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Run golangci-lint - uses: golangci/golangci-lint-action@v1 + uses: golangci/golangci-lint-action@v2 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.31 + version: v1.33 args: --timeout 5m working-directory: v2/ diff --git a/.golangci.yml b/.golangci.yml index 917ad0fec..694cea254 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -110,6 +110,6 @@ linters: # golangci.com configuration # https://github.com/golangci/golangci/wiki/Configuration service: - golangci-lint-version: 1.31.x # use the fixed version to not introduce new linters unexpectedly + golangci-lint-version: 1.33.x # use the fixed version to not introduce new linters unexpectedly prepare: - echo "here I can run custom commands, but no preparation needed for this repo"