Skip to content

Commit

Permalink
Update actions/upload-artifact in GitHub Actions workflows to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Apr 4, 2023
1 parent d30fb81 commit 2a6e921
Showing 1 changed file with 5 additions and 5 deletions.
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@v3
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@v3
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@v3
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@v3
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@v3
with:
name: sgr-osx
path: dist/sgr.tgz
Expand Down

0 comments on commit 2a6e921

Please sign in to comment.