Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i#6981: Use consistent version for upload-artifact and download-artifact #6983

Merged
merged 2 commits into from
Sep 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 20 additions & 10 deletions .github/workflows/ci-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ jobs:
CI_BRANCH: ${{ github.ref }}

- name: Upload Artifacts
uses: actions/upload-artifact@v2
# This points to the latest upload-artifact v4.x.x.
uses: actions/upload-artifact@v4
with:
name: linux-tarball
path: DynamoRIO-Linux-${{ steps.version.outputs.version_number }}.tar.gz
Expand Down Expand Up @@ -215,7 +216,8 @@ jobs:
CI_BRANCH: ${{ github.ref }}

- name: Upload AArch64
uses: actions/upload-artifact@v2
# This points to the latest upload-artifact v4.x.x.
uses: actions/upload-artifact@v4
with:
name: aarch64-tarball
path: DynamoRIO-AArch64-Linux-${{ steps.version.outputs.version_number }}.tar.gz
Expand Down Expand Up @@ -303,7 +305,8 @@ jobs:
CI_BRANCH: ${{ github.ref }}

- name: Upload ARM
uses: actions/upload-artifact@v2
# This points to the latest upload-artifact v4.x.x.
uses: actions/upload-artifact@v4
with:
name: arm-tarball
path: DynamoRIO-ARM-Linux-EABIHF-${{ steps.version.outputs.version_number }}.tar.gz
Expand Down Expand Up @@ -393,7 +396,8 @@ jobs:
CI_BRANCH: ${{ github.ref }}

- name: Upload Artifacts
uses: actions/upload-artifact@v2
# This points to the latest upload-artifact v4.x.x.
uses: actions/upload-artifact@v4
with:
name: android-tarball
path: DynamoRIO-ARM-Android-EABI-${{ steps.version.outputs.version_number }}.tar.gz
Expand Down Expand Up @@ -484,7 +488,8 @@ jobs:
CI_BRANCH: ${{ github.ref }}

- name: Upload Artifacts
uses: actions/upload-artifact@v2
# This points to the latest upload-artifact v4.x.x.
uses: actions/upload-artifact@v4
with:
name: windows-zip
path: DynamoRIO-Windows-${{ steps.version.outputs.version_number }}.zip
Expand Down Expand Up @@ -562,7 +567,8 @@ jobs:
prerelease: false

- name: Download Linux
uses: actions/[email protected]
abhinav92003 marked this conversation as resolved.
Show resolved Hide resolved
# This points to the latest download-artifact v4.x.x.
uses: actions/download-artifact@v4
with:
name: linux-tarball
- name: Upload Linux
Expand All @@ -577,7 +583,8 @@ jobs:
asset_content_type: application/x-gzip

- name: Download AArch64
uses: actions/[email protected]
# This points to the latest download-artifact v4.x.x.
uses: actions/download-artifact@v4
with:
name: aarch64-tarball
- name: Upload AArch64
Expand All @@ -592,7 +599,8 @@ jobs:
asset_content_type: application/x-gzip

- name: Download ARM
uses: actions/[email protected]
# This points to the latest download-artifact v4.x.x.
uses: actions/download-artifact@v4
with:
name: arm-tarball
- name: Upload ARM
Expand All @@ -607,7 +615,8 @@ jobs:
asset_content_type: application/x-gzip

- name: Download Android
uses: actions/[email protected]
# This points to the latest download-artifact v4.x.x.
uses: actions/download-artifact@v4
with:
name: android-tarball
- name: Upload Android
Expand All @@ -622,7 +631,8 @@ jobs:
asset_content_type: application/x-gzip

- name: Download Windows
uses: actions/[email protected]
# This points to the latest download-artifact v4.x.x.
uses: actions/download-artifact@v4
with:
name: windows-zip
- name: Upload Windows
Expand Down
Loading