From b910d345e85cc6adb3524b444db05363af25e7b4 Mon Sep 17 00:00:00 2001 From: John Kane Date: Mon, 16 Feb 2026 11:03:08 +0000 Subject: [PATCH] chore: reenabe caching in macos runners This was disabled due to this issue: https://github.com/actions/runner-images/issues/13341 That issue is now resolved so we are re-enabling the macos caching. Resolves #7714. --- .github/actions/setup-env/action.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/actions/setup-env/action.yml b/.github/actions/setup-env/action.yml index 04d9d78959..34b204e2d3 100644 --- a/.github/actions/setup-env/action.yml +++ b/.github/actions/setup-env/action.yml @@ -38,8 +38,7 @@ runs: shell: bash - uses: actions/cache/restore@v4 id: cache-restore - # TODO: remove OS check when https://github.com/actions/runner-images/issues/13341 is resolved - if: inputs.cache-save == 'false' && runner.os != 'macOS' + if: inputs.cache-save == 'false' with: path: ${{ steps.pnpm.outputs.path }} key: node-cache-${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}