From 1a9951518219c8060ab8f572bcf1165d3a980bc3 Mon Sep 17 00:00:00 2001 From: b0txec Date: Mon, 24 Aug 2026 22:01:10 +0300 Subject: [PATCH] Trigger CI to verify the runner HOME fix Both jobs in the first two CI runs failed identically at the checkout step: "Unable to clone https://github.com/actions/checkout ... mkdir /.cache: permission denied". The runner container runs as a fixed uid with no writable $HOME, so act cloning action sources into its cache directory failed outright -- this affects every remote action reference, not just the actions/cache action type as I'd assumed earlier. Fixed by setting HOME=/data (the already-writable bind-mounted data directory) on the runner container; not a source change, just re-triggering CI to confirm.