Changes
This release adds fine-grained control over the caching steps.
- The input
restore-cache
(true
by default) can be set tofalse
to skip restoring the cache while still allowing to save the cache. - The input
save-cache
(true
by default) can be set tofalse
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
- bump deps @eifinger (#569)
- Automatically push updated known versions @eifinger (#565)
- chore: update known versions for 0.8.16/0.8.17 @github-actions[bot] (#562)
- chore: update known versions for 0.8.15 @github-actions[bot] (#550)
- chore(ci): address CI lint findings @woodruffw (#545)
⬆️ Dependency updates
- Bump github/codeql-action from 3.29.11 to 3.30.3 @dependabot[bot] (#566)
- Bump actions/setup-node from 4.4.0 to 5.0.0 @dependabot[bot] (#551)