Skip to content

Commit

Permalink
IP-244 - Update actions/upload-artifact to v4 due to v3 deprecation.
Browse files Browse the repository at this point in the history
  • Loading branch information
owenlittlejohns committed Dec 11, 2024
1 parent efe0f7d commit 390ce08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/*

0 comments on commit 390ce08

Please # to comment.