Skip to content

Commit

Permalink
ci: upgrade actions/upload-artifact to v4 in CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
DariuszPorowski committed Dec 27, 2024
1 parent fe2f345 commit bbd4881
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,15 @@ jobs:

- name: 📤 Upload test results
if: ${{ steps.changes.outputs.app == 'true' && matrix.os == 'ubuntu-latest' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-results
path: 'reports/jest-*.xml'
if-no-files-found: warn

- name: 📤 Upload coverage results
if: ${{ steps.changes.outputs.app == 'true' && matrix.os == 'ubuntu-latest' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-results
path: coverage
Expand Down

0 comments on commit bbd4881

Please sign in to comment.