From 24765c897b5186d5682a56fd93a64455294b355a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 13 Dec 2024 12:24:13 +0000 Subject: [PATCH] chore(deps): update actions/upload-artifact action to v4 --- .github/workflows/build_and_scan_images.yaml | 2 +- .github/workflows/integrate.yaml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_and_scan_images.yaml b/.github/workflows/build_and_scan_images.yaml index 51effbad..52e4871c 100644 --- a/.github/workflows/build_and_scan_images.yaml +++ b/.github/workflows/build_and_scan_images.yaml @@ -37,7 +37,7 @@ jobs: tar zcvf trivy-reports-${{ strategy.job-index }}.tar.gz ./trivy-reports working-directory: image-definitions - name: Upload Trivy reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: trivy-reports path: image-definitions/trivy-reports-${{ strategy.job-index }}.tar.gz diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index a9fa19a7..7c99653b 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -136,21 +136,21 @@ jobs: if: failure() - name: Upload inspect tarball - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: inspection-reports path: ./inspection-report-${{ strategy.job-index }}.tar.gz if: failure() - name: Upload selenium screenshots - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: selenium-screenshots path: /tmp/selenium-*.png if: failure() - name: Upload HAR logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: selenium-har path: /tmp/selenium-*.har