From af6622492ad8328dd6ff217a55249ce482733b54 Mon Sep 17 00:00:00 2001 From: Mario Fink Date: Tue, 21 Jan 2025 00:40:05 +0100 Subject: [PATCH] deprecated version of actions/upload-artifact, upgrade to v4 --- .github/workflows/pypi-deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pypi-deploy.yml b/.github/workflows/pypi-deploy.yml index af5c786..f5b9822 100644 --- a/.github/workflows/pypi-deploy.yml +++ b/.github/workflows/pypi-deploy.yml @@ -16,7 +16,7 @@ jobs: - name: Prepare wheel build run: make -C python/ setup - name: Store wheel configuration files - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4.6.0 with: name: wheel-config path: python/ @@ -46,7 +46,7 @@ jobs: # env: # CIBW_BUILD: cp36-* cp37-* cp38-* cp39-* cp310-* - name: Store binary wheels - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4.6.0 with: name: binary-wheels path: python/wheelhouse/*.whl @@ -68,7 +68,7 @@ jobs: run: python setup.py sdist working-directory: python/ - name: Store source wheels - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4.6.0 with: name: source-wheels path: python/dist/*.tar.gz