Compare commits

...

2 Commits

Author SHA1 Message Date
78ef79e48d Fix CI: Use golangci-lint v2 GitHub Action
Some checks failed
CI / Lint (pull_request) Failing after 6s
CI / Test (pull_request) Successful in 54s
CI / Build (pull_request) Successful in 37s
CI / Format Check (pull_request) Successful in 2s
The configuration file is for v2, but CI was installing v1.
Use the official golangci-lint GitHub Action which handles v2 correctly.
2025-11-07 09:11:18 +01:00
d79370a8bb fix(fmt): formatting 2025-11-07 09:10:22 +01:00
6 changed files with 34 additions and 37 deletions

View File

@@ -132,9 +132,9 @@ jobs:
fi
- name: Install golangci-lint
run: |
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
echo "$HOME/go/bin" >> $GITHUB_PATH
uses: golangci/golangci-lint-action@v6
with:
version: v2
- name: Run linters
run: make lint

View File

@@ -182,4 +182,3 @@ func TestGateway_matchRoute(t *testing.T) {
})
}
}

View File

@@ -517,4 +517,3 @@ func TestGateway_handleGRPCError(t *testing.T) {
})
}
}

View File

@@ -239,4 +239,3 @@ func joinHash(parts []string) string {
}
return result
}