Skip to content

Commit ce26dd4

Browse files
committed
Update Playwright cache key to exclude uv.lock
Modified the Playwright cache key in the GitHub Actions workflow to use only 'pyproject.toml' for hashing, removing 'uv.lock' from the key. This may help reduce unnecessary cache invalidations when only the lock file changes.
1 parent d418745 commit ce26dd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/verify-test-generation-prompts.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
id: playwright-cache
4848
with:
4949
path: ~/.cache/ms-playwright
50-
key: ${{ runner.os }}-playwright-${{ hashFiles('pyproject.toml', 'uv.lock') }}
50+
key: ${{ runner.os }}-playwright-${{ hashFiles('pyproject.toml') }}
5151

5252
- name: Install Playwright browsers
5353
if: steps.playwright-cache.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)