From 8b78f117be9a160bcb5d7e6c5f1a495b5b9ee194 Mon Sep 17 00:00:00 2001 From: Kevin Stillhammer Date: Sun, 30 Mar 2025 11:47:20 +0200 Subject: [PATCH] Change default cache-dependency-glob To support more users by default we should support popular dependency file formats. A quick GitHub search shows ~40k uses of `constraint.txt` and ~16k uses of `requirements.in`. --- README.md | 3 ++- action.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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