From 789203c6f9608fcf5571c750c08bd7c64aeba4e2 Mon Sep 17 00:00:00 2001 From: lgtm <1gtm@users.noreply.github.com> Date: Thu, 6 Feb 2025 17:32:53 -0800 Subject: [PATCH] Disable image caching in setup-qemu action (#38) Signed-off-by: 1gtm <1gtm@appscode.com> --- .github/workflows/release.yml | 2 ++ Makefile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 990ece4f..fbe87a1f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,6 +44,8 @@ jobs: - name: Set up QEMU id: qemu uses: docker/setup-qemu-action@v3 + with: + cache-image: false - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 diff --git a/Makefile b/Makefile index 96f2807d..af42a724 100644 --- a/Makefile +++ b/Makefile @@ -220,7 +220,7 @@ lint: $(BUILD_DIRS) --env HTTPS_PROXY=$(HTTPS_PROXY) \ --env GOFLAGS="-mod=vendor" \ $(BUILD_IMAGE) \ - golangci-lint run --enable $(ADDTL_LINTERS) --timeout=10m --skip-files="generated.*\.go$\" --skip-dirs-use-default + golangci-lint run --enable $(ADDTL_LINTERS) --timeout=10m --exclude-files="generated.*\.go$\" --exclude-dirs-use-default $(BUILD_DIRS): @mkdir -p $@