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

Update actions/upload-artifact in GitHub Actions workflows to v4 #804

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/build_and_test_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
run: |
./.ci/build_wheel.sh
- name: "Upload release artifacts"
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
pyinstaller -F splitgraph.spec
dist/sgr.exe --version
- name: Upload binary as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: sgr-windows
path: dist/sgr.exe
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
dist/sgr clone --download-all splitgraph/census
dist/sgr checkout splitgraph/census:latest
- name: Upload binary as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: sgr-linux
path: dist/sgr
Expand All @@ -220,7 +220,7 @@ jobs:
pyinstaller -F splitgraph.spec
dist/sgr --version
- name: Upload single-file binary as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: sgr-osx
path: dist/sgr
Expand All @@ -230,7 +230,7 @@ jobs:
dist/sgr-pkg/sgr --version
cd dist/sgr-pkg && tar zcvf ../sgr.tgz .
- name: Upload multi-file binary.gz as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: sgr-osx
path: dist/sgr.tgz
Expand Down