diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85133b84e0d..49074b20edf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,10 +42,9 @@ jobs: fi - name: Lint if: matrix.os == 'ubuntu-20.04' - uses: golangci/golangci-lint-action@v2 + uses: golangci/golangci-lint-action@v3 with: - version: v1.42 - skip-go-installation: true + version: v1.44 skip-pkg-cache: true skip-build-cache: true - run: make test diff --git a/Makefile b/Makefile index 44ac0abf7e8..a2cf9828cc0 100644 --- a/Makefile +++ b/Makefile @@ -97,7 +97,7 @@ lintci: lintci-deps: rm -f ./build/bin/golangci-lint - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b ./build/bin v1.42.1 + curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b ./build/bin v1.44.2 clean: go clean -cache