Skip to content

v1.11.0 🌈 Local Storage for the Cache

Compare
Choose a tag to compare
@github-actions github-actions released this 08 Feb 09:48
· 93 commits to refs/heads/main since this release

Changes

If you want to save the cache to a local path you can specify the path with the cache-local-storage-path input.
This can be useful if you are on a self hosted runner and want to save time and network traffic.

- name: Enable caching and define a custom cache path
  uses: eifinger/setup-rye@v1
  with:
    enable-cache: true
    cache-local-storage-path: '/path/to/cache'

Warning

A sideeffect is that all caches will be invalidated once because the cache key changed.

🚀 Enhancements

⬆️ Dependency updates