This release adds support for expanding the ~
character to the user's home directory for the following inputs:
cache-local-path
tool-dir
tool-bin-dir
cache-dependency-glob
- name: Expand the tilde character
uses: astral-sh/setup-uv@v3
with:
cache-local-path: "~/path/to/cache"
tool-dir: "~/path/to/tool/dir"
tool-bin-dir: "~/path/to/tool-bin/dir"
cache-dependency-glob: "~/my-cache-buster"
In order to make this work cache-dependency-glob
also got support to glob files outside the working directory:
- name: Define an absolute cache dependency glob
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: "/tmp/my-folder/requirements*.txt"
Thank you @fynnsu for raising this issue!
🚀 Enhancements
🧰 Maintenance
- chore: update known checksums for 0.5.4 @github-actions (#158)
- chore: update known checksums for 0.5.3 @github-actions (#156)
⬆️ Dependency updates
- Bump @types/node from 22.9.0 to 22.9.1 @dependabot (#157)
- Bump @vercel/ncc from 0.38.2 to 0.38.3 @dependabot (#155)