From f03cf3e9b89a004b573080893e31c01931b5e6b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sigbj=C3=B8rn=20Skj=C3=A6ret?= Date: Fri, 18 Sep 2026 10:20:53 +0200 Subject: [PATCH] ci : disable GHA cache for copilot (#29068) --- .github/workflows/copilot-setup-steps.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 61c05dcac..5527e73b6 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -11,10 +11,12 @@ on: paths: - .github/workflows/copilot-setup-steps.yml +cache-mode: none + jobs: # The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot. copilot-setup-steps: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 # Set the permissions to the lowest permissions possible needed for your steps. # Copilot will be given its own token for its operations. @@ -31,8 +33,8 @@ jobs: - name: ccache uses: ggml-org/ccache-action@v1.2.24 with: - key: copilot-setup-steps - evict-old-files: 1d + restore: false + save: false - name: Dependencies id: depends