From 8a2e2edba596de7471139ec9d9011d2dd8cbd86e Mon Sep 17 00:00:00 2001 From: Jamie McCrae Date: Tue, 19 Nov 2024 07:45:40 +0000 Subject: [PATCH] ci: Upgrade artifact actions v3 of actions/upload-artifact and actions/download-artifact becomes obsolete. Signed-off-by: Jakub Ciesla Signed-off-by: Jamie McCrae --- .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