ci: disable golangci-lint cache

This will result in slower runs but we are having issues with
golangci-lint (false positives) that are most probably related
to caching.

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
Kir Kolyshkin
2025-11-05 19:58:50 -08:00
parent f73814296c
commit 96dfa9de54
+1
View File
@@ -42,6 +42,7 @@ jobs:
- uses: golangci/golangci-lint-action@v8
with:
version: v2.5
skip-cache: true
# Extra linters, only checking new code from a pull request to main.
- name: lint-extra
if: github.event_name == 'pull_request' && github.base_ref == 'main'