From 9da420ef556f3dd75bdfaba21eabd31044a93106 Mon Sep 17 00:00:00 2001 From: 1gtm <1gtm@appscode.com> Date: Fri, 7 Feb 2025 04:19:39 +0000 Subject: [PATCH] Disable image caching in setup-qemu action Signed-off-by: 1gtm <1gtm@appscode.com> --- .github/workflows/ci.yml | 2 ++ Makefile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69090865..1fd4bbdf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,6 +29,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 23c3ac25..0226a1a7 100644 --- a/Makefile +++ b/Makefile @@ -211,7 +211,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 $@