From 2a6e9210ed30c3e487b57b38f301120eb1a372d4 Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Tue, 4 Apr 2023 15:22:01 +0200 Subject: [PATCH] Update actions/upload-artifact in GitHub Actions workflows to v3 --- .github/workflows/build_and_test_and_release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_and_test_and_release.yml b/.github/workflows/build_and_test_and_release.yml index 464bae09..e95e6314 100644 --- a/.github/workflows/build_and_test_and_release.yml +++ b/.github/workflows/build_and_test_and_release.yml @@ -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 @@ -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 @@ -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 @@ -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 @@ -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