Skip to content

Commit

Permalink
ci: Upgrade artifact actions
Browse files Browse the repository at this point in the history
v3 of actions/upload-artifact and
actions/download-artifact becomes obsolete.

Signed-off-by: Jakub Ciesla <[email protected]>
Signed-off-by: Jamie McCrae <[email protected]>
  • Loading branch information
nordicjm committed Nov 19, 2024
1 parent ba43f1f commit 8a2e2ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/imgtool.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,14 @@ jobs:
pipenv run pip install pytest -e .
pipenv run pytest --junitxml=../junit/pytest-results-${{ matrix.python-version }}.xml
- name: Upload test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: pytest-results-${{ matrix.python-version }}
path: |
junit/pytest-results-${{ matrix.python-version }}*.xml
if-no-files-found: ignore
overwrite: true
environment:
if: ${{ github.event_name == 'push' }}
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8a2e2ed

Please sign in to comment.