From 7a34e5ab92e0d6de61f0b7d89841a244700107e1 Mon Sep 17 00:00:00 2001 From: Harshil Gajera Date: Wed, 21 Aug 2024 15:58:30 +0530 Subject: [PATCH] ci: updating artifact version --- .github/workflows/reusable-build-test-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/reusable-build-test-release.yml b/.github/workflows/reusable-build-test-release.yml index 1b442030..b421efec 100644 --- a/.github/workflows/reusable-build-test-release.yml +++ b/.github/workflows/reusable-build-test-release.yml @@ -1252,14 +1252,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Download all summaries - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: pattern: summary-ko-* - name: Combine summaries into a table run: | echo "| Job | Total Tests | Passed | Failed | errors" >> $GITHUB_STEP_SUMMARY echo "| ---------- | ----------- | ------ | ------ | ------ |" >> $GITHUB_STEP_SUMMARY - for file in summary-*/summary.txt; do + for file in summary-ko*/summary.txt; do cat "$file" >> $GITHUB_STEP_SUMMARY done @@ -1753,7 +1753,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download all summaries - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: pattern: summary-ui-* - name: Combine summaries into a table @@ -2017,7 +2017,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download all summaries - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: pattern: summary-modinput-* - name: Combine summaries into a table