Skip to content

Commit

Permalink
Bump actions/{download,upload}-artifact to v4
Browse files Browse the repository at this point in the history
Signed-off-by: Rodrigo Tobar <[email protected]>
  • Loading branch information
rtobar committed Jul 8, 2024
1 parent 45029a5 commit a3555b0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/actions/download-shark-build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit a3555b0

Please sign in to comment.