add note on caching to read disable-cache-pruning (#506)
Some checks failed
test / test-default-version (ubuntu-latest) (push) Successful in 17s
test / test-pyproject-file-version (push) Successful in 17s
test / test-version-file-version (push) Successful in 17s
test / test-specific-version (0.3.2) (push) Successful in 33s
test / test-relative-path (push) Successful in 20s
test / test-pep440-version (push) Successful in 36s
test / test-malformed-pyproject-file-fallback (push) Successful in 36s
test / test-uv-file-version (push) Successful in 36s
test / test-specific-version (0.3.x) (push) Successful in 41s
test / test-semver-range (ubuntu-latest) (push) Successful in 41s
test / test-version-file-hash-version (push) Successful in 37s
test / test-specific-version (0.3) (push) Successful in 45s
test / test-musl (push) Failing after 35s
test / test-cache-local (map[expected-cache-dir:/home/runner/work/_temp/setup-uv-cache os:ubuntu-latest]) (push) Failing after 43s
test / test-checksum (map[checksum:4d9279ad5ca596b1e2d703901d508430eb07564dc4d8837de9e2fca9c90f8ecd os:ubuntu-latest]) (push) Successful in 51s
test / test-uvx (push) Successful in 53s
test / test-setup-cache (false, ubuntu-latest) (push) Successful in 54s
test / test-absolute-path (push) Successful in 52s
test / test-tool-install (ubuntu-latest) (push) Successful in 1m1s
test / test-custom-manifest-file (push) Successful in 59s
CodeQL / Analyze (TypeScript) (push) Failing after 1m20s
test / test-activate-environment (ubuntu-latest) (push) Successful in 1m20s
test / test-setup-cache-dependency-glob (push) Successful in 1m24s
test / test-setup-cache (true, ubuntu-latest) (push) Successful in 1m26s
test / test-restore-cache-dependency-glob (push) Successful in 57s
test / test-specific-version (>=0.3.0) (push) Successful in 2m37s
test / lint (push) Failing after 2m56s
test / test-setup-cache-requirements-txt (push) Successful in 4m2s
test / test-setup-cache (auto, ubuntu-latest) (push) Failing after 7m3s
test / test-specific-version (0.3.0) (push) Successful in 11m47s
test / test-no-python-version (push) Failing after 13m38s
test / test-with-explicit-token (push) Successful in 14m13s
test / test-python-version (ubuntu-latest) (push) Failing after 1h7m19s
Update known versions / build (push) Has been cancelled
test / test-tilde-expansion-cache-local-path (push) Has been cancelled
test / test-tilde-expansion-cache-dependency-glob (push) Has been cancelled
Release Drafter / ✏️ Draft release (push) Has been cancelled
test / test-default-version (macos-14) (push) Has been cancelled
test / test-default-version (macos-latest) (push) Has been cancelled
test / test-default-version (windows-latest) (push) Has been cancelled
test / test-semver-range (selfhosted-ubuntu-arm64) (push) Has been cancelled
test / test-checksum (map[checksum:a70cbfbf3bb5c08b2f84963b4f12c94e08fbb2468ba418a3bfe1066fbe9e7218 os:macos-latest]) (push) Has been cancelled
test / test-tool-install (macos-14) (push) Has been cancelled
test / test-tool-install (macos-latest) (push) Has been cancelled
test / test-tool-install (windows-latest) (push) Has been cancelled
test / test-tilde-expansion-tool-dirs (push) Has been cancelled
test / test-python-version (macos-latest) (push) Has been cancelled
test / test-python-version (windows-latest) (push) Has been cancelled
test / test-activate-environment (macos-latest) (push) Has been cancelled
test / test-activate-environment (windows-latest) (push) Has been cancelled
test / test-setup-cache (auto, selfhosted-ubuntu-arm64) (push) Has been cancelled
test / test-setup-cache (auto, windows-latest) (push) Has been cancelled
test / test-setup-cache (false, selfhosted-ubuntu-arm64) (push) Has been cancelled
test / test-setup-cache (false, windows-latest) (push) Has been cancelled
test / test-setup-cache (true, selfhosted-ubuntu-arm64) (push) Has been cancelled
test / test-setup-cache (true, windows-latest) (push) Has been cancelled
test / test-cache-local (map[expected-cache-dir:/home/ubuntu/.cache/uv os:selfhosted-ubuntu-arm64]) (push) Has been cancelled
test / test-cache-local (map[expected-cache-dir:D:\a\_temp\setup-uv-cache os:windows-latest]) (push) Has been cancelled
test / test-setup-cache-local (push) Has been cancelled
test / cleanup-tilde-expansion-tests (push) Has been cancelled
test / test-restore-cache (auto, selfhosted-ubuntu-arm64) (push) Has been cancelled
test / test-restore-cache (auto, ubuntu-latest) (push) Has been cancelled
test / test-restore-cache (auto, windows-latest) (push) Has been cancelled
test / test-restore-cache (false, selfhosted-ubuntu-arm64) (push) Has been cancelled
test / test-restore-cache (false, ubuntu-latest) (push) Has been cancelled
test / test-restore-cache (false, windows-latest) (push) Has been cancelled
test / test-restore-cache (true, selfhosted-ubuntu-arm64) (push) Has been cancelled
test / test-restore-cache (true, ubuntu-latest) (push) Has been cancelled
test / test-restore-cache (true, windows-latest) (push) Has been cancelled
test / test-restore-cache-requirements-txt (push) Has been cancelled
test / test-restore-cache-local (push) Has been cancelled
test / all-tests-passed (push) Has been cancelled

This commit is contained in:
Kevin Stillhammer
2025-07-31 21:10:21 +02:00
committed by GitHub
parent 2a967c9b97
commit 632449003a

View File

@ -193,6 +193,10 @@ are automatically verified by this action. The sha256 hashes can be found on the
### Enable caching ### Enable caching
> [!NOTE]
> The cache is pruned before it is uploaded to the GitHub Actions cache. This can lead to
> a small or empty cache. See [Disable cache pruning](#disable-cache-pruning) for more details.
If you enable caching, the [uv cache](https://docs.astral.sh/uv/concepts/cache/) will be uploaded to If you enable caching, the [uv cache](https://docs.astral.sh/uv/concepts/cache/) will be uploaded to
the GitHub Actions cache. This can speed up runs that reuse the cache by several minutes. the GitHub Actions cache. This can speed up runs that reuse the cache by several minutes.
Caching is enabled by default on GitHub-hosted runners. Caching is enabled by default on GitHub-hosted runners.
@ -396,6 +400,7 @@ If you want to change this behaviour (especially on self-hosted runners) you can
This action supports expanding the `~` character to the user's home directory for the following inputs: This action supports expanding the `~` character to the user's home directory for the following inputs:
- `version-file`
- `cache-local-path` - `cache-local-path`
- `tool-dir` - `tool-dir`
- `tool-bin-dir` - `tool-bin-dir`