From 305e94e49376d542a7be09f61eb18f92723d50a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Insaurralde=20Avalos?= Date: Tue, 10 Sep 2024 12:13:30 -0400 Subject: [PATCH] CI: add version to cache key for libpack/ccache download actions for win --- .github/workflows/actions/windows/getCcache/action.yml | 2 +- .github/workflows/actions/windows/getLibpack/action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions/windows/getCcache/action.yml b/.github/workflows/actions/windows/getCcache/action.yml index bd0fc1ebee..f0a6ef5abf 100644 --- a/.github/workflows/actions/windows/getCcache/action.yml +++ b/.github/workflows/actions/windows/getCcache/action.yml @@ -59,7 +59,7 @@ runs: id: getCached with: path: ${{ inputs.ccachebindir }} - key: ccacheforwin + key: ccacheforwin-${{ inputs.ccacheversion }} - name: Download ccache shell: bash if: steps.getCached.outputs.cache-hit != 'true' diff --git a/.github/workflows/actions/windows/getLibpack/action.yml b/.github/workflows/actions/windows/getLibpack/action.yml index 9db6e6d8ba..f9bf9726c4 100644 --- a/.github/workflows/actions/windows/getLibpack/action.yml +++ b/.github/workflows/actions/windows/getLibpack/action.yml @@ -59,7 +59,7 @@ runs: id: getCached with: path: ${{ inputs.libpackdir }} - key: libpackforwin + key: libpackforwin-${{ inputs.libpackname }} - name: Download libpack shell: bash if: steps.getCached.outputs.cache-hit != 'true'