Add **/*.py.lock to cache-dependency-glob (#590)

This means uv scripts will be covered by default

Fixes https://github.com/astral-sh/setup-uv/issues/586
This commit is contained in:
James Duley
2025-09-26 22:26:03 +12:00
committed by GitHub
parent c7d85d9988
commit e554b93b80
2 changed files with 2 additions and 0 deletions

View File

@@ -250,6 +250,7 @@ changes. If you use relative paths, they are relative to the repository root.
> **/*constraints*.in > **/*constraints*.in
> **/pyproject.toml > **/pyproject.toml
> **/uv.lock > **/uv.lock
> **/*.py.lock
> ``` > ```
```yaml ```yaml

View File

@@ -44,6 +44,7 @@ inputs:
**/*constraints*.in **/*constraints*.in
**/pyproject.toml **/pyproject.toml
**/uv.lock **/uv.lock
**/*.py.lock
restore-cache: restore-cache:
description: "Whether to restore the cache if found." description: "Whether to restore the cache if found."
default: "true" default: "true"