From 85904e2ddb0ea54ddbf8af823c0ea4abe7d16f86 Mon Sep 17 00:00:00 2001 From: Yuichi Motoyama Date: Sat, 14 Sep 2024 14:52:01 +0900 Subject: [PATCH] update upload/download-artifact actions to v4 --- .github/workflows/wheel.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml index 1f85fa44..f6855b69 100644 --- a/.github/workflows/wheel.yml +++ b/.github/workflows/wheel.yml @@ -16,7 +16,7 @@ jobs: - name: Build dist run: python setup.py sdist bdist_wheel - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: dist path: | @@ -28,7 +28,7 @@ jobs: needs: [build_sdist] runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v4 with: name: dist path: dist