Skip to content

Commit 8a2e2ed

Browse files
committed
ci: Upgrade artifact actions
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]>
1 parent ba43f1f commit 8a2e2ed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/imgtool.yaml

Lines changed: 2 additions & 1 deletion
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)