From e554b93b803acbf50c9fddb6909954b797ae12d5 Mon Sep 17 00:00:00 2001 From: James Duley Date: Fri, 26 Sep 2025 22:26:03 +1200 Subject: [PATCH] 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 --- README.md | 1 + action.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index e89f9e7..04e313e 100644 --- a/README.md +++ b/README.md @@ -250,6 +250,7 @@ changes. If you use relative paths, they are relative to the repository root. > **/*constraints*.in > **/pyproject.toml > **/uv.lock +> **/*.py.lock > ``` ```yaml diff --git a/action.yml b/action.yml index a390176..0a591c3 100644 --- a/action.yml +++ b/action.yml @@ -44,6 +44,7 @@ inputs: **/*constraints*.in **/pyproject.toml **/uv.lock + **/*.py.lock restore-cache: description: "Whether to restore the cache if found." default: "true"