From 825b355917c1953b66e56fd699951eb9f3d31f06 Mon Sep 17 00:00:00 2001 From: asonix Date: Wed, 7 Feb 2024 15:48:51 -0600 Subject: [PATCH] Fix cache keys --- .forgejo/workflows/check.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/check.yaml b/.forgejo/workflows/check.yaml index b9da295a..0fbd539c 100644 --- a/.forgejo/workflows/check.yaml +++ b/.forgejo/workflows/check.yaml @@ -35,7 +35,7 @@ jobs: ~/.cargo/registry/cache ~/.cargo/git/db ~/.rustup - key: ${{ runner.os }}-cargo-${{ steps.rust.outputs.cacheKey }} + key: ${{ runner.os }}-cargo-${{ steps.rust.outputs.cacheKey }} clippy: @@ -57,7 +57,7 @@ jobs: ~/.cargo/registry/cache ~/.cargo/git/db ~/.rustup - key: ${{ runner.os }}-cargo-${{ jobs.cache-rust.steps.rust.outputs.cacheKey }} + key: ${{ runner.os }}-cargo-${{ jobs.cache-rust.steps.rust.outputs.cacheKey }} - name: Clippy run: | @@ -105,7 +105,7 @@ jobs: ~/.cargo/registry/cache ~/.cargo/git/db ~/.rustup - key: ${{ runner.os }}-cargo-${{ jobs.cache-rust.steps.rust.outputs.cacheKey }} + key: ${{ runner.os }}-cargo-${{ jobs.cache-rust.steps.rust.outputs.cacheKey }} - name: Install cargo-binstall uses: https://github.com/taiki-e/install-action@v2