From 596d03cee9a12a7036c6b27cc883e3fa56a6bf8e Mon Sep 17 00:00:00 2001 From: Marcel Date: Thu, 14 May 2026 08:47:39 +0200 Subject: [PATCH] =?UTF-8?q?ci(workflows):=20downgrade=20upload-artifact=20?= =?UTF-8?q?v4=20=E2=86=92=20v3=20=E2=80=94=20Gitea=20act=5Frunner=20limita?= =?UTF-8?q?tion=20(ADR-014)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reverts the re-regression introduced in 410b91e2. Gitea Actions (act_runner) does not implement the v4 artifact protocol — jobs report failure even when all tests pass. Pins all three call sites back to @v3 and adds load-bearing inline comments pointing to ADR-014 / #557. This commit makes the grep guard added in the previous commit GREEN. Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/ci.yml | 6 ++++-- .gitea/workflows/coverage-flake-probe.yml | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index bfd1ae7a..7418145d 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -94,9 +94,10 @@ jobs: exit 1 fi + # Gitea Actions (act_runner) does not implement upload-artifact v4 protocol — pinned per ADR-014. Do NOT upgrade. See #557. - name: Upload coverage reports if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: coverage-reports path: | @@ -130,9 +131,10 @@ jobs: || { echo "FAIL: /hilfe/transkription.html missing from prerender output"; exit 1; } echo "PASS: only /hilfe/transkription.html prerendered." + # Gitea Actions (act_runner) does not implement upload-artifact v4 protocol — pinned per ADR-014. Do NOT upgrade. See #557. - name: Upload screenshots if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: unit-test-screenshots path: frontend/test-results/screenshots/ diff --git a/.gitea/workflows/coverage-flake-probe.yml b/.gitea/workflows/coverage-flake-probe.yml index 0258ba7a..0af5a805 100644 --- a/.gitea/workflows/coverage-flake-probe.yml +++ b/.gitea/workflows/coverage-flake-probe.yml @@ -56,9 +56,10 @@ jobs: exit 1 fi + # Gitea Actions (act_runner) does not implement upload-artifact v4 protocol — pinned per ADR-014. Do NOT upgrade. See #557. - name: Upload coverage log on failure if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: coverage-log-run-${{ matrix.run }} path: /tmp/coverage-test-${{ github.run_id }}-${{ matrix.run }}.log