Skip to content

Commit

Permalink
Merge pull request #544 from wayfair-incubator/renovate/actions-uploa…
Browse files Browse the repository at this point in the history
…d-artifact-4.x

Update actions/upload-artifact action to v4
  • Loading branch information
romatik authored Dec 18, 2023
2 parents 16de70b + ae20ae6 commit 0daf126
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,15 +141,15 @@ jobs:
run: pytest --cov-report xml:coverage-${{ matrix.python-version }}.xml --junitxml=test-results-${{ matrix.python-version }}.xml

- name: Upload pytest test results artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pytest-results-${{ matrix.python-version }}
path: test-results-${{ matrix.python-version }}.xml
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}

- name: Upload coverage results artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pytest-coverage-${{ matrix.python-version }}
path: coverage-${{ matrix.python-version }}.xml
Expand Down

0 comments on commit 0daf126

Please sign in to comment.