From 68ba048462563e4802e062f2755b581b62899ca7 Mon Sep 17 00:00:00 2001 From: josh Date: Thu, 16 Apr 2026 21:13:29 -0400 Subject: [PATCH] ci: pin upload-artifact to v3 for Gitea compatibility Gitea Actions rejects @actions/artifact v2.0+ (upload-artifact@v4, download-artifact@v4) with a GHESNotSupportedError. v3 is the highest supported on current Gitea releases. --- .gitea/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index bf3e224..6d87c4f 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -84,7 +84,7 @@ jobs: TEST_USERNAME: ${{ secrets.E2E_USERNAME }} TEST_PASSWORD: ${{ secrets.E2E_PASSWORD }} - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v3 if: always() with: name: playwright-report