From 3b2a67a711bb8955cf2e97d16174dbbe05a1f606 Mon Sep 17 00:00:00 2001 From: Nicholas Tindle Date: Mon, 1 Dec 2025 14:06:56 -0600 Subject: [PATCH] ci(claude): add free disk space step to prevent runner out of space (#11503) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary - Add `jlumbroso/free-disk-space@v1.3.1` action to claude.yml workflow - Frees up disk space on Ubuntu runner before heavy Docker and dependency setup - Skips `large-packages` (slow) and `docker-images` (needed for workflow) ## Test plan - [x] Verify claude.yml workflow runs successfully without disk space errors 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude --- .github/workflows/claude.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index 51eb764b80..3f5e8c22ec 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -44,6 +44,12 @@ jobs: with: fetch-depth: 1 + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@v1.3.1 + with: + large-packages: false # slow + docker-images: false # limited benefit + # Backend Python/Poetry setup (mirrors platform-backend-ci.yml) - name: Set up Python uses: actions/setup-python@v5