Skip to content

v6.7.0 馃寛 New inputs `restore-cache` and `save-cache`

Choose a tag to compare

@github-actions github-actions released this 14 Sep 13:13
· 259 commits to refs/heads/main since this release
b75a909

Changes

This release adds fine-grained control over the caching steps.

  • The input restore-cache (true by default) can be set to false to skip restoring the cache while still allowing to save the cache.
  • The input save-cache (true by default) can be set to false to skip saving the cache.

Skipping cache saving can be useful if you know, that you will never use this version of the cache again and don't want to waste storage space:

- name: Save cache only on main branch
  uses: astral-sh/setup-uv@v6
  with:
    enable-cache: true
    save-cache: ${{ github.ref == 'refs/heads/main' }}

馃殌 Enhancements

馃О Maintenance

猬嗭笍 Dependency updates