Skip to content

Commit

Permalink
chore: update actions download-artifact and up-artifact to v4 (#2151)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
acelyc111 authored Jan 17, 2025
1 parent f5c322f commit c950ffe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/download_artifact/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: .
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/upload_artifact/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit c950ffe

Please sign in to comment.