diff --git a/README.md b/README.md index 55ac8eb..42e7e01 100644 --- a/README.md +++ b/README.md @@ -196,7 +196,8 @@ changes. If you use relative paths, they are relative to the repository root. > The default is > ```yaml > cache-dependency-glob: | -> **/requirements*.txt +> **/*(requirements|constraints)*.(txt|in) +> **/pyproject.toml > **/uv.lock > ``` diff --git a/action.yml b/action.yml index a56f0d1..f2e6480 100644 --- a/action.yml +++ b/action.yml @@ -31,8 +31,9 @@ inputs: "Glob pattern to match files relative to the repository root to control the cache." default: | + **/*(requirements|constraints)*.(txt|in) + **/pyproject.toml **/uv.lock - **/requirements*.txt cache-suffix: description: "Suffix for the cache key" required: false