Trigger CI to verify the runner HOME fix
CI / backend (push) Failing after 2s
CI / frontend (push) Successful in 53s

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:
b0txec
2026-08-24 22:01:10 +03:00
parent a989d2a6a8
commit 1a99515182

Diff Content Not Available