From 20e1692ba00e639d605352f3fec0df6417b8839a Mon Sep 17 00:00:00 2001 From: gunnar Date: Mon, 1 Jun 2026 18:10:52 +0200 Subject: [PATCH] fix: remove root-owned overlay path from buildah cache The /var/lib/containers/storage/overlay directory is owned by root (from the container-storage-action BTRFS mount). The actions/cache post-cleanup step cannot remove it as the runner user, causing EACCES warnings. Co-Authored-By: opencode --- .github/workflows/build.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0ecc63e..85161ec 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -84,7 +84,6 @@ jobs: uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: | - /var/lib/containers/storage/overlay ~/.cache/buildah /tmp/.buildah-cache key: ${{ runner.os }}-${{ github.workflow }}-${{ hashFiles('Containerfile', 'build/**', 'configs/**', 'scripts/**') }}-${{ github.ref }}