From ebf276d2504022aa06dd15d4ed7e6d8825bec4dd Mon Sep 17 00:00:00 2001 From: Sam <61994039+fourthDimensional@users.noreply.github.com> Date: Sat, 31 May 2025 20:09:14 -0500 Subject: [PATCH] Update test results upload action to use version 3 and set retention days --- .gitea/workflows/run_tests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/run_tests.yml b/.gitea/workflows/run_tests.yml index 1d0e079..bff75fe 100644 --- a/.gitea/workflows/run_tests.yml +++ b/.gitea/workflows/run_tests.yml @@ -29,7 +29,8 @@ jobs: - name: Upload test results if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: pytest-results - path: pytest-results.xml \ No newline at end of file + path: pytest-results.xml + retention-days: 5 \ No newline at end of file