This is an automated email from the ASF dual-hosted git repository.

laiyingchun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pegasus.git


The following commit(s) were added to refs/heads/master by this push:
     new c950ffef2 chore: update actions download-artifact and up-artifact to 
v4 (#2151)
c950ffef2 is described below

commit c950ffef2ad5ccfad789bc73429e6f0803338bad
Author: Yingchun Lai <[email protected]>
AuthorDate: Fri Jan 17 11:22:16 2025 +0800

    chore: update actions download-artifact and up-artifact to v4 (#2151)
    
    As the actions/download-artifact@v3 and actions/upload-artifact@v3 are 
scheduled for deprecation on November 30, 2024, this patch updates them to v4.
    
    - 
https://github.com/actions/upload-artifact?tab=readme-ov-file#actionsupload-artifact
    - 
https://github.com/actions/download-artifact?tab=readme-ov-file#actionsdownload-artifact
---
 .github/actions/download_artifact/action.yaml | 2 +-
 .github/actions/upload_artifact/action.yaml   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/actions/download_artifact/action.yaml 
b/.github/actions/download_artifact/action.yaml
index 07cf2d476..f213dee55 100644
--- a/.github/actions/download_artifact/action.yaml
+++ b/.github/actions/download_artifact/action.yaml
@@ -22,7 +22,7 @@ runs:
     - name: Unpack prebuilt third-parties
       uses: "./.github/actions/unpack_prebuilt_thirdparties"
     - name: Download tarball
-      uses: actions/download-artifact@v3
+      uses: actions/download-artifact@v4
       with:
         name: ${{ env.ARTIFACT_NAME }}_artifact_${{ github.sha }}
         path: .
diff --git a/.github/actions/upload_artifact/action.yaml 
b/.github/actions/upload_artifact/action.yaml
index a58606f9e..e62abe4a3 100644
--- a/.github/actions/upload_artifact/action.yaml
+++ b/.github/actions/upload_artifact/action.yaml
@@ -30,7 +30,7 @@ runs:
         tar -zcvhf ${ARTIFACT_NAME}_builder.tar build/latest/output 
build/latest/bin build/latest/src/server/test/config.ini hadoop-bin 
zookeeper-bin
       shell: bash
     - name: Upload tarball
-      uses: actions/upload-artifact@v3
+      uses: actions/upload-artifact@v4
       with:
         name: ${{ env.ARTIFACT_NAME }}_artifact_${{ github.sha }}
         path: ${{ env.ARTIFACT_NAME }}_builder.tar


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to