From c8c7a3cdcd06c180d7fe44339ceaf087cee5efe0 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Tue, 16 Jun 2026 18:58:46 +0200 Subject: [PATCH] validate: disable golangci-lint cache Something with the cache is not working right and results in inconsistent lint result. Even on PRs where there are no source code changes we observe random failures. I have seen at least 4 different instances since we the new CI setup. It is not reasonable to spot fix each new warning (mostly just adding new nolint comments) each time as it affects all PRs at once. It will also be very confusing for new contributors. Fixes: #28893 Signed-off-by: Paul Holzinger (cherry picked from commit c8ce2c60895c96e589ab0c836d5f45a7e090fd55) Signed-off-by: Paul Holzinger --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d62b38f96a..10c87156f1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -99,6 +99,7 @@ jobs: with: version: ${{ steps.gv.outputs.version }} install-only: true + skip-cache: true # cache causes flaky results https://github.com/podman-container-tools/podman/issues/28893 - name: Install pre-commit run: pipx install pre-commit