From d12093f28a0449412d79bea2e71918f5b59fbdb6 Mon Sep 17 00:00:00 2001 From: hwangjokim Date: Sat, 1 Feb 2025 23:28:24 +0900 Subject: [PATCH] Fix: migrate atrifact version to v4 --- .github/workflows/cd-pipeline.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd-pipeline.yml b/.github/workflows/cd-pipeline.yml index 62763ef0..14e79c37 100644 --- a/.github/workflows/cd-pipeline.yml +++ b/.github/workflows/cd-pipeline.yml @@ -59,17 +59,18 @@ jobs: shell: bash - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: algohub path: algohub.zip + overwrite: true deploy: needs: build runs-on: ubuntu-latest steps: - name: Download build artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: algohub path: algohub.zip