Skip to content

Commit

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

Bump actions/upload-artifact from 3 to 4
  • Loading branch information
timkpaine committed Dec 18, 2023
2 parents c3d8bda + 6110e1b commit 8cebd7c
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 @@ -75,16 +75,16 @@ jobs:
if: ${{ 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: python-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 8cebd7c

Please sign in to comment.