cache
cache copied to clipboard
A shortcut action to cache Julia artifacts, packages, and registries.
Closes #79
A user may use both `julia-actions/cache` and `actions/cache` without realizing. Sometimes this may be intentional, but many times it may be accidental. Can we detect if the user is also...
If the CI job you are running with `julia-actions/cache` fails with `delete-old-caches: true` the cache entry used by that CI job will be deleted and *no* new cache entry will...
I've been seeing some strange behaviors when running Julia code after a successful cache restore. I've been seeing these kinds of failures in multiple workflows at seemingly random locations: ```...
Hello, I've been using the base GitHub cache to cache ``` ~/.julia/artifacts ~/.julia/packages ``` with some success (similar to what you're doing here I think), however I encounter a lot...
I'm not sure whether this belongs here, on `setup-julia`, `buildpkg`, or if it's not a problem. Basically, running CI with Julia v1.6 on the windows-latest x64 platform is taking a...
It appears that [my assessment that enabling `cache-registries: true` by default was safe](https://github.com/julia-actions/cache/pull/62#issuecomment-1877778169) was incorrect. For projects that commit a `Manifest.toml` the registry may not get updated in `Pkg.instantiate`. Specifically,...
I think it makes sense to cache the depot even if there have been test failures. Unfortunately it requires an upstream change https://github.com/actions/cache/pull/1242
Currently a series of jobs non-matrix jobs in the same workflow would have identical cache keys with the exception of included job name. If we were to include the job...