From a3555b0038225166da7a8c06011624942b8e207a Mon Sep 17 00:00:00 2001 From: Rodrigo Tobar Date: Mon, 8 Jul 2024 21:36:20 +0800 Subject: [PATCH] Bump actions/{download,upload}-artifact to v4 Signed-off-by: Rodrigo Tobar --- .github/actions/download-shark-build/action.yaml | 2 +- .github/workflows/build-and-test.yaml | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/actions/download-shark-build/action.yaml b/.github/actions/download-shark-build/action.yaml index e3ed2167..e03403fe 100644 --- a/.github/actions/download-shark-build/action.yaml +++ b/.github/actions/download-shark-build/action.yaml @@ -3,7 +3,7 @@ runs: using: composite steps: - name: Download shark build tarball - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: shark-build diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index 6dfa50fc..b4b19000 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -61,7 +61,7 @@ jobs: - name: Upload shark build for next jobs (Linux) if: ${{ matrix.os == 'ubuntu-latest' && matrix.omp }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: shark-build path: shark-build.tar.gz @@ -87,13 +87,13 @@ jobs: run: .ci/run_shark.sh my_model -o execution.seed=${TEST_FIXED_SEED} - name: Upload shark output for next jobs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: shark-output path: ${{ env.TEST_OUTPUTS_DIR }} - name: Upload shark inputs for next jobs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: shark-input path: ${{ env.TEST_INPUTS_DIR }} @@ -108,7 +108,7 @@ jobs: - name: Install HDF5 tools run: sudo apt install hdf5-tools - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: shark-output path: ${{ env.TEST_OUTPUTS_DIR }} @@ -129,7 +129,7 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: shark-output path: ${{ env.TEST_OUTPUTS_DIR }} @@ -158,12 +158,12 @@ jobs: - uses: ./.github/actions/download-shark-build - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: shark-output path: ${{ env.TEST_OUTPUTS_DIR }} - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: shark-input path: ${{ env.TEST_INPUTS_DIR }}