From 39646bd778733dd7a66c63253ca5bb3caff262fc Mon Sep 17 00:00:00 2001 From: magges Date: Mon, 3 Aug 2026 20:31:57 +0200 Subject: [PATCH] fix: use Gitea-compatible artifact action --- .gitea/workflows/build-appimage.yaml | 2 +- tests/test_gitea_actions_workflow.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build-appimage.yaml b/.gitea/workflows/build-appimage.yaml index c6624a8..bd5518f 100644 --- a/.gitea/workflows/build-appimage.yaml +++ b/.gitea/workflows/build-appimage.yaml @@ -37,7 +37,7 @@ jobs: run: ./packaging/build-appimage.sh - name: Upload AppImage - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: Korin-Timer.AppImage path: build/Korin-Timer.AppImage diff --git a/tests/test_gitea_actions_workflow.py b/tests/test_gitea_actions_workflow.py index 0cc94a0..7fdd288 100644 --- a/tests/test_gitea_actions_workflow.py +++ b/tests/test_gitea_actions_workflow.py @@ -17,7 +17,7 @@ class GiteaActionsWorkflowTests(unittest.TestCase): self.assertIn("runs-on: ubuntu-latest", workflow) self.assertIn("container: node:24-trixie", workflow) self.assertIn("./packaging/build-appimage.sh", workflow) - self.assertIn("actions/upload-artifact@v4", workflow) + self.assertIn("actions/upload-artifact@v3", workflow) self.assertIn("path: build/Korin-Timer.AppImage", workflow)