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.
This commit is contained in: