From 26e289747ff775941200641a62557b42ef25f104 Mon Sep 17 00:00:00 2001 From: Jeremy Frasier Date: Tue, 5 May 2026 09:59:08 -0400 Subject: [PATCH] Add a delimiter between two hashes Previously the hash for requirements.txt was concatenated directly with the hash for pyproject.toml. This can increase the chance of ambiguous cache keys and makes the key harder to read/compare with the other jobs (which use a - separator). --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5842141..efd704e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -271,7 +271,7 @@ jobs: key: >- ${{ env.BASE_CACHE_KEY }}${{ hashFiles('**/requirements-test.txt') }}-${{ - hashFiles('**/requirements.txt') }}${{ + hashFiles('**/requirements.txt') }}-${{ hashFiles('pyproject.toml') }} restore-keys: | ${{ env.BASE_CACHE_KEY }}