Bump upload-artifact and download-artifact version to v3 (#2141)

v1 and v2 have been deprecated and workflows that try to use them now fail
This commit is contained in:
InfinityWei 2024-09-13 12:53:36 +08:00 committed by GitHub
parent ff6fd49148
commit cb870db274
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -70,7 +70,7 @@ jobs:
run: >
echo "RELEASE_DESCRIPTION=Unstable snapshot of clangd on ${{ env.RELEASE_DATE }}." >> commit.env
- name: Upload result
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: env
path: commit.env
@ -87,7 +87,7 @@ jobs:
echo "RELEASE_NAME=${{ github.event.inputs.release_name }}" >> commit.env
echo "RELEASE_DESCRIPTION=${{ github.event.inputs.description }}" >> commit.env
- name: Upload result
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: env
path: commit.env
@ -101,10 +101,12 @@ jobs:
if: always() && (needs.schedule_environment.result == 'success' || needs.workflow_dispatch_environment.result == 'success')
steps:
- name: Fetch environment variables
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name:
env
path:
env
- name: Set environment variables
run: |
cat env/commit.env >> $GITHUB_ENV
@ -128,7 +130,7 @@ jobs:
echo "TAG_NAME=${{ env.TAG_NAME }}" >> release.env
echo "RELEASE_ID=${{ steps.create_release.outputs.id }}" >> release.env
- name: Upload result
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: release
path: release.env
@ -241,15 +243,19 @@ jobs:
ninja -C grpc-build install
- name: Fetch target commit
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name:
env
path:
env
- name: Fetch release info
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name:
release
path:
release
- name: Put release info into env
run: |
cat env/commit.env >> $GITHUB_ENV
@ -339,10 +345,12 @@ jobs:
if: always() && needs.build.result == 'success'
steps:
- name: Fetch release info
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name:
release
path:
release
- name: Update the env variables
run: >
cat release/release.env >> $GITHUB_ENV