From 4b9e4437fc19bf294760c1f41fa336339cf590c6 Mon Sep 17 00:00:00 2001 From: Rui Oliveira Date: Thu, 3 Oct 2024 13:54:50 +0100 Subject: [PATCH] feat: update golangci-lint version (#250) Updated golangci-lint version (which prevented the release workflow from running successfully). **Checklist** - [ ] I covered my changes with tests. - [ ] I Updated the documentation that is affected by my changes: - [ ] Change in the CLI arguments - [ ] Change in the configuration file --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8847dd5e..273ebd85 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: with: go-version: "^1.22" - name: Go Linter - run: docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v1.57.2 golangci-lint run -v -E gofmt --timeout=5m + run: docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v1.61.0 golangci-lint run -v -E gofmt --timeout=5m - name: Unit Tests run: go test ./...