From 2050461d6f9faba7e1faf970f6658f74ae7ccab9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81kos=20Kiss?= Date: Thu, 18 Apr 2024 04:31:06 +0200 Subject: [PATCH] Extend cache key with runner architecture #32 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index fb6d5f8..1939ebd 100644 --- a/action.yml +++ b/action.yml @@ -211,7 +211,7 @@ runs: uses: actions/cache/restore@v4 with: path: ${{ inputs.roswell-cache-paths }} - key: roswell-${{ inputs.roswell-version }}-${{ steps.locals.outputs.current-month }}-${{ env.cache-name }}-${{ runner.os }}-${{ env.LISP }}-${{ inputs.cache-suffix }} + key: roswell-${{ inputs.roswell-version }}-${{ steps.locals.outputs.current-month }}-${{ env.cache-name }}-${{ runner.os }}-${{ runner.arch }}-${{ env.LISP }}-${{ inputs.cache-suffix }} - if: inputs.cache == 'true' && steps.roswell-cache-restore.outputs.cache-hit == 'true' name: Restore Path To Cached Files