From 498c0f8a7f8eec02de756b6d11c5e84f265a5217 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Cie=C5=9Bla?= Date: Thu, 14 Nov 2024 12:58:44 +0100 Subject: [PATCH] ci: Upgrade artifact actions v3 of actions/upload-artifact and actions/download-artifact becomes obsolete. From: https://github.com/orgs/community/discussions/142581 Signed-off-by: Jakub Ciesla --- .github/workflows/imgtool.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/imgtool.yaml b/.github/workflows/imgtool.yaml index 03b191e16..1c79751ce 100644 --- a/.github/workflows/imgtool.yaml +++ b/.github/workflows/imgtool.yaml @@ -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