Skip to content

Commit

Permalink
Fix deprecated upload-artifact version
Browse files Browse the repository at this point in the history
  • Loading branch information
scheibling committed Sep 13, 2024
1 parent 39099bb commit 7ea1f49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ jobs:
coverage html
- name: Upload report
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
path: htmlcov
path: htmlcov
if-no-files-found: warn
5 changes: 3 additions & 2 deletions .github/workflows/dev_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ jobs:
coverage html
- name: Upload report
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
path: htmlcov
path: htmlcov
if-no-files-found: warn

0 comments on commit 7ea1f49

Please sign in to comment.