From 8fa231352dac32c08734eb04cf4b12e76895a261 Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Mon, 16 Dec 2024 12:06:37 +0100 Subject: [PATCH] GHA: Update actions/upload-artifact to v4 --- .github/workflows/ci-scripts-build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-scripts-build.yml b/.github/workflows/ci-scripts-build.yml index 49d0797..be48bd7 100644 --- a/.github/workflows/ci-scripts-build.yml +++ b/.github/workflows/ci-scripts-build.yml @@ -131,10 +131,11 @@ jobs: - name: Run main module tests run: python .ci/cue.py test - name: Upload tapfiles Artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: tapfiles ${{ matrix.name }} path: '**/O.*/*.tap' + if-no-files-found: ignore - name: Collect and show test results run: python .ci/cue.py test-results @@ -206,9 +207,10 @@ jobs: - name: Run main module tests run: python .ci/cue.py test - name: Upload tapfiles Artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: tapfiles ${{ matrix.name }} path: '**/O.*/*.tap' + if-no-files-found: ignore - name: Collect and show test results run: python .ci/cue.py test-results