From cdb8d0a46e0fe4309744e1587ae5fac87f6be557 Mon Sep 17 00:00:00 2001 From: 1gtm <1gtm@appscode.com> Date: Fri, 7 Feb 2025 01:37:02 +0000 Subject: [PATCH] Disable image caching in setup-qemu action Signed-off-by: 1gtm <1gtm@appscode.com> --- .github/workflows/ci.yml | 2 ++ .github/workflows/release.yml | 2 ++ Makefile | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 995570c0..e6c38474 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,6 +30,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/.github/workflows/release.yml b/.github/workflows/release.yml index d7f8da8c..2f5cd4a1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,6 +26,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 b347a49a..1807bdae 100644 --- a/Makefile +++ b/Makefile @@ -379,7 +379,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 --skip-dirs=client,vendor + golangci-lint run --enable $(ADDTL_LINTERS) --timeout=10m --exclude-files="generated.*\.go$\" --exclude-dirs-use-default --exclude-dirs=client,vendor $(BUILD_DIRS): @mkdir -p $@