Skip to content

Commit

Permalink
ci: lock upload/download-artifact action to v3 (#60)
Browse files Browse the repository at this point in the history
node version incompatible on centos7
  • Loading branch information
aceforeverd authored Sep 25, 2024
1 parent 086aaf1 commit a610a33
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:

- name: Upload Artifacts
if: ${{ github.event_name == 'push' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: libzetasql-*.tar.gz
name: release-artifacts
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
- name: Upload Artifacts
if: ${{ github.event_name == 'push' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: libzetasql-*.tar.gz
name: release-artifacts
Expand All @@ -183,7 +183,9 @@ jobs:
timeout-minutes: 120
steps:
- name: Download Release Artifacts
uses: actions/download-artifact@v4
# since centos build still using upload-artifact@v3, we must lock
# download-artifact version too
uses: actions/download-artifact@v3
with:
name: release-artifacts

Expand Down

0 comments on commit a610a33

Please sign in to comment.