From 9fdb628711043f659eb830ec74dc8cf74c3877ed Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Tue, 31 May 2022 12:38:58 +0200 Subject: [PATCH] Use Clang version as cache key. --- .github/workflows/format-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/format-check.yml b/.github/workflows/format-check.yml index ba195b876..2c572a6f8 100644 --- a/.github/workflows/format-check.yml +++ b/.github/workflows/format-check.yml @@ -20,7 +20,7 @@ jobs: uses: actions/cache@v2 with: path: clang - key: ${{ runner.os }}-clang + key: ${{ runner.os }}-clang-13-0-1 - name: Install Clang if: steps.cache-clang.outputs.cache-hit != 'true'