From 390ce08e43aec09e2f8b4b0a59adcb20cc3a83e8 Mon Sep 17 00:00:00 2001 From: Owen Littlejohns Date: Tue, 10 Dec 2024 22:27:24 -0500 Subject: [PATCH] IP-244 - Update actions/upload-artifact to v4 due to v3 deprecation. --- .github/workflows/run_tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 0b0cc88..e9792fd 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -45,21 +45,21 @@ jobs: - name: Archive test results if: ${{ always() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: test result (Python 3.9) path: test_results.txt - name: Archive code coverage report (plain text) if: ${{ always() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: code coverage report (plain text) path: coverage_report.txt - name: Archive code coverage report (HTML) if: ${{ always() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: code coverage report (HTML) path: htmlcov/*