diff options
| author | Ivan Gabaldon <igabaldon@inetol.net> | 2025-05-14 23:05:08 +0200 |
|---|---|---|
| committer | Ivan Gabaldon <igabaldon@inetol.net> | 2025-05-15 11:19:28 +0200 |
| commit | d0b7f26f4bbe95a17a171ba77fbbed0b8427ce28 (patch) | |
| tree | 40d6bfd9f87d96943d58029e565a37c046f95b67 | |
| parent | b42f812c57b555d60a16cc64f16ccbb554b4ab91 (diff) | |
[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
| -rw-r--r-- | .github/workflows/container.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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/ |