From d770da734182aea209f8fab394017b893264a77b Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Thu, 10 Dec 2020 09:48:06 -0600 Subject: [PATCH] github-ci: use a unique id for the commit check cargo cache All builds have been using the same cache id for ~/.cargo which could lead us to conflict situations which is what I think we are seeing with the commit-check job. (cherry picked from commit 49ca070446cdca49afc42d71aaedaa9a1b458897) --- .github/workflows/commits.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/commits.yml b/.github/workflows/commits.yml index 4742c36f88..067284bde2 100644 --- a/.github/workflows/commits.yml +++ b/.github/workflows/commits.yml @@ -14,7 +14,7 @@ jobs: uses: actions/cache@v1 with: path: ~/.cargo - key: cargo + key: commit-check-cargo - name: Install dependencies run: | apt update -- 2.47.2