Skip to content

Commit 148aeeb

Browse files
committed
ci: Upgrade artifact actions
v3 of actions/upload-artifact and actions/download-artifact becomes obsolete. Signed-off-by: Jakub Ciesla <jakub.ciesla@nordicsemi.no>
1 parent bcdf6e2 commit 148aeeb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/imgtool.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,14 @@ jobs:
3535
pipenv run pip install pytest -e .
3636
pipenv run pytest --junitxml=../junit/pytest-results-${{ matrix.python-version }}.xml
3737
- name: Upload test results
38-
uses: actions/upload-artifact@v3
38+
uses: actions/upload-artifact@v4
3939
if: always()
4040
with:
4141
name: pytest-results-${{ matrix.python-version }}
4242
path: |
4343
junit/pytest-results-${{ matrix.python-version }}*.xml
4444
if-no-files-found: ignore
45+
overwrite: true
4546
environment:
4647
if: ${{ github.event_name == 'push' }}
4748
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)