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-7.0.0-beta1~1936 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F5649%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. --- diff --git a/.github/workflows/commits.yml b/.github/workflows/commits.yml index 055e636717..17d80f6315 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