fix: remove pip caching from Gitea workflows to fix ETIMEDOUT errors
Lint and Type Check / lint (push) Successful in 1m26s
test / unit (pull_request) Successful in 36s
test / integration (pull_request) Failing after 45s

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 <noreply@anthropic.com>
This commit is contained in:
2026-06-04 12:01:28 -04:00
parent e1ec0afd86
commit a5d08bd64e
2 changed files with 0 additions and 4 deletions
-2
View File
@@ -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: |
-2
View File
@@ -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: |