Skip to content

Commit

Permalink
Merge pull request #133 from timkpaine/dependabot/github_actions/acti…
Browse files Browse the repository at this point in the history
…ons/upload-artifact-4

Bump actions/upload-artifact from 3 to 4
  • Loading branch information
timkpaine authored Dec 19, 2023
2 parents 28c7026 + 8092e5a commit 43e2b6d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,16 @@ jobs:
if: ${{ github.event_name == matrix.event-name || matrix.os == 'ubuntu-latest' }}

- name: Upload test results (Python)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}
name: py-test-results-${{ matrix.os }}-${{ matrix.python-version }}
path: junit.xml
if: ${{ always() }}

- name: Upload test results (JS)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}
name: js-test-results-${{ matrix.os }}-${{ matrix.python-version }}
path: js/junit.xml
if: ${{ always() }}

Expand Down

0 comments on commit 43e2b6d

Please sign in to comment.