Skip to content

Commit

Permalink
Merge pull request #66 from danielfromearth/dependabot/github_actions…
Browse files Browse the repository at this point in the history
…/develop/actions/upload-artifact-4

Bump actions/upload-artifact from 3 to 4
  • Loading branch information
danielfromearth authored Dec 19, 2023
2 parents ffdbdda + ecdecaa commit 7720fb4
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 @@ -47,21 +47,21 @@ jobs:
- name: Archive test results
if: ${{ always() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test result
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 7720fb4

Please sign in to comment.