From ec00ba5d20fb19339a67bea70a151f6d84d25759 Mon Sep 17 00:00:00 2001 From: Fons van der Plas Date: Sat, 9 Sep 2023 12:48:52 +0200 Subject: [PATCH] remove "test" from cache name (#66) --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 83ad2f3..d6ea831 100644 --- a/action.yml +++ b/action.yml @@ -47,9 +47,9 @@ runs: id: cache with: path: "${{ format('{0}\n{1}\n{2}\n{3}', steps.paths.outputs.artifacts-path, steps.paths.outputs.packages-path, steps.paths.outputs.registries-path, steps.paths.outputs.precompilation-cache-path) }}" - key: ${{ runner.os }}-test-${{ inputs.cache-name }}-${{ hashFiles('**/Project.toml') }} + key: ${{ runner.os }}-${{ inputs.cache-name }}-${{ hashFiles('**/Project.toml') }} restore-keys: | - ${{ runner.os }}-test-${{ inputs.cache-name }}- + ${{ runner.os }}-${{ inputs.cache-name }}- - id: hit run: echo "cache-hit=$CACHE_HIT" >> $GITHUB_OUTPUT