From 5e4e3d7d7c68490d6c81eb604c79304576a92eec Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 10 Sep 2026 20:45:08 +0000 Subject: [PATCH] ci: set cache-mode on release workflows Add top-level `cache-mode: none` to release.yml so the release run (and the test.yml jobs it calls) never reads from or writes to the Actions cache, regardless of per-step cache settings. Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_01MYe3WCXtgiqomNuVQdi4Yd --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4fb2336..ae405ea 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,6 +8,9 @@ on: permissions: contents: read +# Release paths never touch the Actions cache; enforced regardless of per-step settings. +cache-mode: none + jobs: test: uses: ./.github/workflows/test.yml