diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-10-09 13:00:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-09 13:00:39 +0200 |
commit | 2ae59318ee708306d852ffd8aae5b1ab62cb3455 (patch) | |
tree | 3b33e6eea54b26a334f68dcf053acd9ac358dd62 | |
parent | 98727b331d0e8a762745e049641317c0d64b25f0 (diff) |
build: invalidate GHA cache (#7894)
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2655f364f..400b5c590 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -114,9 +114,9 @@ jobs: target/*/.* target/*/build target/*/deps - key: ${{ matrix.os }}-${{ matrix.kind }}-${{ hashFiles('Cargo.lock') }} + key: deno-${{ matrix.os }}-${{ matrix.kind }}-${{ hashFiles('Cargo.lock') }} restore-keys: | - ${{ matrix.os }}-${{ matrix.kind }}- + deno-${{ matrix.os }}-${{ matrix.kind }}- - name: lint.py if: matrix.kind == 'lint' |