From 0f0bc7dc5c497c67bae8c0153ef89d514f0bd9ef Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 10 Sep 2026 20:35:26 +0000 Subject: [PATCH] ci: set cache-mode on release workflows Add top-level `cache-mode: none` to release.yml and docs.yml so the release and docs-publish paths never read from or write to the Actions cache, regardless of per-step settings. Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_01MYe3WCXtgiqomNuVQdi4Yd --- .github/workflows/docs.yml | 3 +++ .github/workflows/release.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 22ee90b6..158c3f8e 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -7,6 +7,9 @@ on: permissions: {} +# Release paths never touch the Actions cache; enforced regardless of per-step settings. +cache-mode: none + jobs: docs: runs-on: ubuntu-latest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 13473bf6..653104f6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,6 +7,9 @@ on: permissions: {} +# Release paths never touch the Actions cache; enforced regardless of per-step settings. +cache-mode: none + jobs: test: permissions: