From 64d6995ac0d38cedb527594f76f176d8f46d5ac9 Mon Sep 17 00:00:00 2001 From: Alper Rifat Ulucinar Date: Thu, 7 Apr 2022 13:56:43 +0300 Subject: [PATCH] Bump linter version Signed-off-by: Alper Rifat Ulucinar --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 00487c73..7ddf30ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,6 +46,11 @@ jobs: with: submodules: true + - name: Setup Go + uses: actions/setup-go@v2 + with: + go-version: ${{ env.GO_VERSION }} + - name: Find the Go Build Cache id: go run: echo "::set-output name=cache::$(make go.cachedir)" @@ -72,10 +77,9 @@ jobs: # version, but we prefer this action because it leaves 'annotations' (i.e. # it comments on PRs to point out linter violations). - name: Lint - uses: golangci/golangci-lint-action@v2 + uses: golangci/golangci-lint-action@v3 with: version: ${{ env.GOLANGCI_VERSION }} - skip-go-installation: true check-diff: runs-on: ubuntu-18.04