...
626M /home/runner/.julia/registries
20K /home/runner/.julia/scratchspaces
1.1G total
Run if [ -d "~/.julia/registries" ] && [ -n "$(ls -A "~/.julia/registries")" ]; then
Registries directory does not exist or is empty. Skipping registry update
The problem turned out to be that using ~ in a quoted path doesn't expand it which results in failed checks:
I noticed a bug with https://github.com/julia-actions/cache/pull/140 where the registry failed to be updated:
The problem turned out to be that using
~
in a quoted path doesn't expand it which results in failed checks:Seems best we just use the expanded path to avoid these kind of mistakes from occurring again.