From a5d08bd64e2cbeb5eaddbb68180eef14873f9863 Mon Sep 17 00:00:00 2001 From: didericis Date: Thu, 4 Jun 2026 12:01:28 -0400 Subject: [PATCH] fix: remove pip caching from Gitea workflows to fix ETIMEDOUT errors The Gitea Actions runner doesn't have access to pip cache storage, causing 'reserveCache failed: connect ETIMEDOUT' errors. Removed cache configuration from both: - .gitea/workflows/lint.yml - .gitea/workflows/update-badges.yml Pip will download dependencies fresh on each run, which is acceptable for CI workflows and avoids the timeout errors. Co-Authored-By: Claude Haiku 4.5 --- .gitea/workflows/lint.yml | 2 -- .gitea/workflows/update-badges.yml | 2 -- 2 files changed, 4 deletions(-) diff --git a/.gitea/workflows/lint.yml b/.gitea/workflows/lint.yml index 482eb26..423f5a4 100644 --- a/.gitea/workflows/lint.yml +++ b/.gitea/workflows/lint.yml @@ -17,8 +17,6 @@ jobs: uses: actions/setup-python@v4 with: python-version: '3.12' - cache: 'pip' - cache-dependency-path: requirements-dev.txt - name: Install dev dependencies run: | diff --git a/.gitea/workflows/update-badges.yml b/.gitea/workflows/update-badges.yml index ed53b0f..4c1e190 100644 --- a/.gitea/workflows/update-badges.yml +++ b/.gitea/workflows/update-badges.yml @@ -22,8 +22,6 @@ jobs: uses: actions/setup-python@v4 with: python-version: '3.12' - cache: 'pip' - cache-dependency-path: requirements-dev.txt - name: Install dev dependencies run: |