ci(tests): disable setup-uv cache on act_runner to prevent /tmp disk pressure #33

Merged
agent-dev-a merged 1 commits from fix/uv-cache-disable-act-runner into main 2026-05-25 17:58:30 +00:00
+12
View File
@@ -76,6 +76,12 @@ jobs:
uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5
with:
version: "0.11.11"
# act_runner shares /tmp across jobs; the uv wheel cache
# (default /tmp/setup-uv-cache) fills the partition and
# breaks subsequent runs with "No space left on device".
# Caching is useless on ephemeral runners anyway — the
# cache directory is discarded when the container exits.
enable-cache: false
- name: Set up Python 3.11
if: steps.changes.outputs.run == 'true'
@@ -156,6 +162,12 @@ jobs:
uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5
with:
version: "0.11.11"
# act_runner shares /tmp across jobs; the uv wheel cache
# (default /tmp/setup-uv-cache) fills the partition and
# breaks subsequent runs with "No space left on device".
# Caching is useless on ephemeral runners anyway — the
# cache directory is discarded when the container exits.
enable-cache: false
- name: Set up Python 3.11
if: steps.changes.outputs.run == 'true'