From 6e37c54423e54f33a95cb8d46eadae75b1161329 Mon Sep 17 00:00:00 2001 From: Attila Vamos Date: Thu, 28 Nov 2024 16:47:22 +0000 Subject: [PATCH] HPCC-33049 Fix artifact download version Bundles test GH Actions Changes: .github/workflows/bundleTest-thor.md: .github/workflows/bundleTest-thor.yml: Change 'Download Package' 'uses: actions/download-artifact@v3' to 'v4' Signed-off-by: Attila Vamos --- .github/workflows/bundleTest-thor.md | 7 ++++--- .github/workflows/bundleTest-thor.yml | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/bundleTest-thor.md b/.github/workflows/bundleTest-thor.md index 8d82b12660e..57768175ed3 100644 --- a/.github/workflows/bundleTest-thor.md +++ b/.github/workflows/bundleTest-thor.md @@ -102,7 +102,7 @@ The steps in the workflow run on the specified operating system, with Ubuntu-22. This step enables us to download the ready-to-install HPCC Platform's artifact built on the latest commit. ```yaml - name: Download Package - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ inputs.asset-name }} path: ${{ inputs.asset-name }} @@ -348,11 +348,12 @@ If any logs, ZAP reports, or .trace files are generated, they are uploaded as ar ```yaml - name: ml-thor-test-logs-artifact if: ${{ failure() || cancelled() || env.uploadArtifact == 'true' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ inputs.asset-name }}-bundle-test-logs path: | /home/runner/HPCCSystems-regression/log/* /home/runner/HPCCSystems-regression/zap/* if-no-files-found: ignore - ``` \ No newline at end of file + ``` + diff --git a/.github/workflows/bundleTest-thor.yml b/.github/workflows/bundleTest-thor.yml index f2ac0edad56..5da5906f8b6 100644 --- a/.github/workflows/bundleTest-thor.yml +++ b/.github/workflows/bundleTest-thor.yml @@ -50,7 +50,7 @@ jobs: sudo rm -rf /usr/local/lib/android - name: Download Package - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ inputs.asset-name }} path: ${{ inputs.asset-name }} @@ -268,7 +268,7 @@ jobs: - name: ml-thor-test-logs-artifact if: ${{ failure() || cancelled() || env.uploadArtifact == 'true' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ inputs.asset-name }}-bundle-test-logs path: |