From 1b9efa54524ded933390dafaaa73d78d8269de1e Mon Sep 17 00:00:00 2001 From: Dominic Evans Date: Thu, 25 Apr 2024 16:31:27 +0100 Subject: [PATCH] chore(ci): re-enable gocache in golangci-lint step Since v5.0.0 golangci-lint-action has now removed their go cache, so we can re-enable the built-in setup-go one. Also bump the golangci-lint version to latest v1.57.2 Signed-off-by: Dominic Evans Signed-off-by: Richard Artoul --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7558b704b..4563fe2ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,14 +33,13 @@ jobs: - name: Setup Go uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: - cache: false # golangci-lint-action has its own cache go-version: ${{ matrix.go-version }} - name: golangci-lint env: GOFLAGS: -tags=functional uses: golangci/golangci-lint-action@82d40c283aeb1f2b6595839195e95c2d6a49081b # v5.0.0 with: - version: v1.56.1 + version: v1.57.2 test: name: Unit Testing with Go ${{ matrix.go-version }} runs-on: ubuntu-latest