Skip to content

Commit

Permalink
Update actions/upload-artifact to v3
Browse files Browse the repository at this point in the history
Old version keeps throwing us annotations about Node.js 12 being
deprecated.
  • Loading branch information
lunkwill42 committed Jan 4, 2023
1 parent 58bdbf4 commit 9f14db4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
- name: Upload Selenium driver logs (${{ matrix.python-version }})
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: pytest-logs
path: |
Expand All @@ -101,15 +101,15 @@ jobs:

- name: Upload test reports (${{ matrix.python-version }})
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: test-reports
path: |
reports/**/*
- name: Upload core dumps (${{ matrix.python-version }})
if: failure()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: core-dumps
path: |
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:

- name: Upload JavaScript test reports
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: javascript-test-reports
path: |
Expand Down

0 comments on commit 9f14db4

Please sign in to comment.