From: Jason Ish Date: Thu, 10 Dec 2020 15:48:06 +0000 (-0600) Subject: github-ci: use a unique id for the commit check cargo cache X-Git-Tag: suricata-5.0.6~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F5652%2Fhead;p=thirdparty%2Fsuricata.git 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) --- 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