From 6efd592c3283a261006fc7b3375082c8b64e2e8c Mon Sep 17 00:00:00 2001 From: Tyler Murray Date: Fri, 20 Sep 2024 13:38:05 -0700 Subject: [PATCH] Revert upload/download to v3 for now (#203) Co-authored-by: Luca Soldaini --- .github/workflows/CI.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index c39415c4..b5cc4ed0 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -202,7 +202,7 @@ jobs: sudo apt-get update sudo apt-get install --yes --upgrade build-essential cmake protobuf-compiler libssl-dev glibc-source musl-tools - name: Upload wheels - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: wheels path: dist @@ -251,7 +251,7 @@ jobs: target: ${{ matrix.target }} args: --release --out dist --find-interpreter - name: Upload wheels - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: wheels path: dist @@ -268,7 +268,7 @@ jobs: command: sdist args: --out dist - name: Upload sdist - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: wheels path: dist @@ -279,7 +279,7 @@ jobs: if: "startsWith(github.ref, 'refs/tags/')" needs: [build-linux, build-windows, build-macos, sdist] steps: - - uses: actions/download-artifact@v4.1.7 + - uses: actions/download-artifact@v3 with: name: wheels - name: Publish to PyPI