From 7a00e27df98e6a5fe73bc374a6c910179952ca01 Mon Sep 17 00:00:00 2001 From: continuist Date: Fri, 19 Sep 2025 19:16:32 -0400 Subject: [PATCH] Don't cache container image layers to avoid policy issues --- .forgejo/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index d895605..587c2ba 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -64,7 +64,8 @@ jobs: - name: Build optimized Rust test image (if needed) if: steps.check-deps.outputs.rebuild_needed == 'true' run: | - podman --remote build \ + # Build without caching to avoid policy issues + podman --remote build --no-cache \ -f backend/Dockerfile.test-rust \ -t "$PREBUILT_BACKEND_TEST_IMAGE:${{ steps.check-deps.outputs.deps_hash }}" \ -t "$PREBUILT_BACKEND_TEST_IMAGE:latest"