From 3f10a917c29ca95ef24ceb8715077f03c7c7b512 Mon Sep 17 00:00:00 2001 From: Abhinav Anil Sharma Date: Thu, 12 Sep 2024 13:25:20 -0400 Subject: [PATCH] i#6981: Use consistent version for upload-artifact and download-artifact Changes the version used for upload-artifact and download-artifact to the current one recommended at https://github.com/actions/upload-artifact and https://github.com/actions/download-artifact. Fixes: #6981 --- .github/workflows/ci-package.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci-package.yml b/.github/workflows/ci-package.yml index 98125014932..d00e3a867fb 100644 --- a/.github/workflows/ci-package.yml +++ b/.github/workflows/ci-package.yml @@ -127,7 +127,7 @@ jobs: CI_BRANCH: ${{ github.ref }} - name: Upload Artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: linux-tarball path: DynamoRIO-Linux-${{ steps.version.outputs.version_number }}.tar.gz @@ -215,7 +215,7 @@ jobs: CI_BRANCH: ${{ github.ref }} - name: Upload AArch64 - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: aarch64-tarball path: DynamoRIO-AArch64-Linux-${{ steps.version.outputs.version_number }}.tar.gz @@ -303,7 +303,7 @@ jobs: CI_BRANCH: ${{ github.ref }} - name: Upload ARM - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: arm-tarball path: DynamoRIO-ARM-Linux-EABIHF-${{ steps.version.outputs.version_number }}.tar.gz @@ -393,7 +393,7 @@ jobs: CI_BRANCH: ${{ github.ref }} - name: Upload Artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: android-tarball path: DynamoRIO-ARM-Android-EABI-${{ steps.version.outputs.version_number }}.tar.gz @@ -484,7 +484,7 @@ jobs: CI_BRANCH: ${{ github.ref }} - name: Upload Artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: windows-zip path: DynamoRIO-Windows-${{ steps.version.outputs.version_number }}.zip @@ -562,7 +562,7 @@ jobs: prerelease: false - name: Download Linux - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact@v4 with: name: linux-tarball - name: Upload Linux @@ -577,7 +577,7 @@ jobs: asset_content_type: application/x-gzip - name: Download AArch64 - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact@v4 with: name: aarch64-tarball - name: Upload AArch64 @@ -592,7 +592,7 @@ jobs: asset_content_type: application/x-gzip - name: Download ARM - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact@v4 with: name: arm-tarball - name: Upload ARM @@ -607,7 +607,7 @@ jobs: asset_content_type: application/x-gzip - name: Download Android - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact@v4 with: name: android-tarball - name: Upload Android @@ -622,7 +622,7 @@ jobs: asset_content_type: application/x-gzip - name: Download Windows - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact@v4 with: name: windows-zip - name: Upload Windows