From 6210480952d0eea40b43797e5f4dd099769eba3e Mon Sep 17 00:00:00 2001 From: Marcel Date: Thu, 14 May 2026 08:49:32 +0200 Subject: [PATCH] =?UTF-8?q?docs(ci-gitea):=20replace=20'=E2=86=90=20upgrad?= =?UTF-8?q?ed=20from=20v3'=20with=20ADR-014=20pin=20comment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Lines 203, 230, and 332 carried comments that actively encouraged the regression (they read as if v4 is the canonical target). Replaced with the correct pinned-at-v3 comment referencing ADR-014. Co-Authored-By: Claude Sonnet 4.6 --- docs/infrastructure/ci-gitea.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/infrastructure/ci-gitea.md b/docs/infrastructure/ci-gitea.md index 017d6ba2..b57a719e 100644 --- a/docs/infrastructure/ci-gitea.md +++ b/docs/infrastructure/ci-gitea.md @@ -200,7 +200,7 @@ jobs: working-directory: frontend - name: Upload screenshots if: always() - uses: actions/upload-artifact@v4 # ← upgraded from v3 + uses: actions/upload-artifact@v3 # pinned per ADR-014 — Gitea Actions does not implement v4 protocol. Do NOT upgrade. with: name: unit-test-screenshots path: frontend/test-results/screenshots/ @@ -227,7 +227,7 @@ jobs: working-directory: backend - name: Upload test results if: always() - uses: actions/upload-artifact@v4 # ← upgraded from v3 + uses: actions/upload-artifact@v3 # pinned per ADR-014 — Gitea Actions does not implement v4 protocol. Do NOT upgrade. with: name: backend-test-results path: backend/target/surefire-reports/ @@ -329,7 +329,7 @@ jobs: E2E_BACKEND_URL: http://localhost:8080 - name: Upload E2E results if: always() - uses: actions/upload-artifact@v4 # ← upgraded from v3 + uses: actions/upload-artifact@v3 # pinned per ADR-014 — Gitea Actions does not implement v4 protocol. Do NOT upgrade. with: name: e2e-results path: frontend/test-results/e2e/