From d7075b163ae73697bd06ec25289b22c0668f08a6 Mon Sep 17 00:00:00 2001 From: CI Bot Date: Wed, 29 Jul 2026 18:32:52 +0000 Subject: [PATCH] fix(ci): remove upload-artifact@v4 step incompatible with Gitea Actions The actions/upload-artifact@v4 step fails on Gitea with: GHESNotSupportedError: @actions/artifact v2.0.0+ not supported on GHES. Coverage is already enforced via --cov-fail-under=10 in the test step, so the artifact upload was redundant anyway. --- .gitea/workflows/ci.yaml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 8e0e219..078d9e4 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -22,13 +22,6 @@ jobs: run: | cd backend python -m pytest tests/ --cov=app --cov-report=term-missing --cov-report=xml --cov-fail-under=10 - - name: Upload coverage report - if: always() - uses: actions/upload-artifact@v4 - with: - name: coverage-report - path: backend/coverage.xml - frontend-test: runs-on: ubuntu-latest steps: