From 9792414ae914f1aab6258cd6419d4827036f597c Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Thu, 12 Jun 2025 21:31:03 -0400 Subject: [PATCH] ci(setup-deps): pin ccache-action for WoA fix Signed-off-by: Seth Flynn --- .github/actions/setup-dependencies/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup-dependencies/action.yml b/.github/actions/setup-dependencies/action.yml index 47a9819ea..71785a384 100644 --- a/.github/actions/setup-dependencies/action.yml +++ b/.github/actions/setup-dependencies/action.yml @@ -54,7 +54,9 @@ runs: # TODO(@getchoo): Get this working on MSYS2! - name: Setup ccache if: ${{ (runner.os != 'Windows' || inputs.msystem == '') && inputs.build-type == 'Debug' }} - uses: hendrikmuhs/ccache-action@v1.2.18 + # TODO(@getchoo): Un-pin when this commit makes it to a stable release! + # Needed to support the native Windows ARM runner + uses: hendrikmuhs/ccache-action@1eaec4d0426ec8b42d342bf1e7b56fd3660a8fd9 with: variant: sccache create-symlink: ${{ runner.os != 'Windows' }}