cache icon indicating copy to clipboard operation
cache copied to clipboard

A shortcut action to cache Julia artifacts, packages, and registries.

Results 35 cache issues
Sort by recently updated
recently updated
newest added

If there's a cache hit during the save step and thus won't be saved, the tidy step will currently go and delete it. We should exclude that from the deletion.

The step itself doesn't fail but maybe it should? ``` Post job cleanup. Post job cleanup. Active manifest files: 2 found Active artifact files: 9 found Active scratchspaces: 1 found...

When a user wants to specify a cache name they typically want to also use `include-matrix: false`. It appears to me that the `cache-name` and `include-matrix` inputs were designed with...

See https://github.com/FluxML/Metalhead.jl/pull/260#issuecomment-1841371560

Closes https://github.com/julia-actions/cache/issues/72 For now this is just a single directory entry, but if people need it it could be extended by inclusion of a delimiter.

Using `juliaup` within `setup-julia` might make sense https://github.com/julia-actions/setup-julia/issues/172 If so, given `juliaup` saves julia versions in `.julia/juliaup` by default, it would mean we could cache julia versions. This could potentially...

I noticed that Makie save a dir in the depot. It made me think some repos might want to opt in to custom dirs.

If a CI job were to create this file this override file would automatically get cached. We should avoid caching this file as future CI runs may no longer require...

3.2.3 (see #43) added support for cross OS caching on windows. We should consider if it makes sense to use the same cache across OSes for some of the cached...

Could this be included inside the `setup-julia` action? For example: ```yml - uses: julia-actions/setup-julia with: version: 1.8.2 cache: true ``` and inside that `cache` dict, you could have the options...