From 70a83d53fb7dae6d80519c2f7e1888f198ba8d10 Mon Sep 17 00:00:00 2001 From: Ivan Gabaldon Date: Wed, 14 May 2025 23:05:08 +0200 Subject: [PATCH] [fix] CI: container-mounts bad hash This is a typo, but if there are multiple patterns in hashFiles, they should be separated by commas. https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/evaluate-expressions-in-workflows-and-actions#examples-with-multiple-patterns --- .github/workflows/container.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index ef92a0662..22d1c0266 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -76,7 +76,7 @@ jobs: uses: actions/cache@v4 with: # yamllint disable-line rule:line-length - key: "container-mounts-${{ matrix.arch }}-${{ hashFiles('./container/Dockerfile ./container/legacy/Dockerfile') }}" + key: "container-mounts-${{ matrix.arch }}-${{ hashFiles('./container/Dockerfile', './container/legacy/Dockerfile') }}" restore-keys: "container-mounts-${{ matrix.arch }}-" path: | /var/tmp/buildah-cache/