From 521c74b0b5f4e1fda25260a06711159c838d18b8 Mon Sep 17 00:00:00 2001 From: Tomas Kracmar Date: Tue, 2 Jun 2026 11:23:47 +0200 Subject: [PATCH] ci: downgrade upload-artifact to v3 for Gitea compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit actions/upload-artifact@v4 uses GitHub-specific APIs that Gitea Actions doesn't implement. v3 works reliably across both platforms. The report itself is unchanged — only the upload mechanism is. --- .github/workflows/docs-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs-check.yml b/.github/workflows/docs-check.yml index 9363212..2f6c694 100644 --- a/.github/workflows/docs-check.yml +++ b/.github/workflows/docs-check.yml @@ -35,7 +35,7 @@ jobs: run: cat parity-report.md >> "$GITHUB_STEP_SUMMARY" - name: Upload parity report artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: translation-parity-report path: parity-report.md