From 620364ab2b4792e525cbd0a94078bdac8dee2a43 Mon Sep 17 00:00:00 2001 From: Christoph Wagner Date: Sun, 23 Nov 2025 14:08:43 +0100 Subject: [PATCH] fix: downgrade upload-artifact to v3 for Gitea compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub Actions artifact v4 is not supported on GHES/Gitea instances. Downgraded from upload-artifact@v4 to upload-artifact@v3 to fix: Error: @actions/artifact v2.0.0+, upload-artifact@v4+ and download-artifact@v4+ are not currently supported on GHES. Changes: - .gitea/workflows/ci.yml: Updated 2 instances (test-results, quality-report) - .gitea/workflows/release.yml: Updated 1 instance (release-artifacts) This ensures CI/CD pipeline runs successfully on Gitea Actions. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitea/workflows/ci.yml | 4 ++-- .gitea/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 12a6193..f5852ff 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -67,7 +67,7 @@ jobs: - name: Archive test results if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: test-results path: coverage/ @@ -153,7 +153,7 @@ jobs: cat quality-report.md - name: Upload quality report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: quality-report path: quality-report.md diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 57abce2..bc33927 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -127,7 +127,7 @@ jobs: EOF - name: Upload release artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: release-artifacts path: |