From fd9f38b0d8a6743eafec9f679263f6f890eaf4de Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Tue, 21 Jan 2025 12:52:05 +0100 Subject: [PATCH] github-actions: actions/upload-artifact@v3 will be retired by January 30th, 2025 (#2935) github-actions: actions/upload-artifact@v4 will be retired by January 30th, 2025 (cherry picked from commit 919aa9135b71ff31062f5b9a2c060a3e249a3131) --- .github/workflows/eks-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/eks-ci.yml b/.github/workflows/eks-ci.yml index f2c61230d3..46aaacb4ca 100644 --- a/.github/workflows/eks-ci.yml +++ b/.github/workflows/eks-ci.yml @@ -212,7 +212,7 @@ jobs: - name: Upload Test Results if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: allure_results-${{ matrix.test-target}} path: ${{ env.REPORTS_DIR }} @@ -230,9 +230,11 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Download Artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: + pattern: allure_results-* path: artifacts + merge-multiple: true - name: Extract Artifacts run: |