From 17544140fbea8e7ce22b0db1292a4e879964bffd Mon Sep 17 00:00:00 2001 From: Ivan Gabaldon Date: Thu, 19 Feb 2026 10:37:20 +0100 Subject: [fix] ci: cache keys (#5745) YAML block (literal) scalar style also takes quotes into account: Expected: `container-amd64-20260216-acbc0ea29f44f7fc7eeadcf91d421c66f26dbbdd48cc284691f8fd8982ab7323, container-amd64-20260216-, container-amd64-` Got: `container-amd64-20260216-acbc0ea29f44f7fc7eeadcf91d421c66f26dbbdd48cc284691f8fd8982ab7323, "container-amd64-20260216-", "container-amd64-"` --- .github/workflows/documentation.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.github/workflows/documentation.yml') diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index aeeb9ec89..8bbca5e52 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -46,7 +46,8 @@ jobs: uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: key: "python-${{ env.PYTHON_VERSION }}-${{ runner.arch }}-${{ hashFiles('./requirements*.txt') }}" - restore-keys: "python-${{ env.PYTHON_VERSION }}-${{ runner.arch }}-" + restore-keys: | + python-${{ env.PYTHON_VERSION }}-${{ runner.arch }}- path: "./local/" - name: Setup venv -- cgit v1.2.3