From 3ca415d3b534674cc4bd52ce602356417767aa2b Mon Sep 17 00:00:00 2001 From: Simon Bowly Date: Tue, 21 May 2024 07:44:46 -0400 Subject: [PATCH] Update Github actions versions --- .github/workflows/build-wheel.yml | 4 ++-- .github/workflows/test-wheel.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-wheel.yml b/.github/workflows/build-wheel.yml index fd644ce..deae51b 100644 --- a/.github/workflows/build-wheel.yml +++ b/.github/workflows/build-wheel.yml @@ -29,12 +29,12 @@ jobs: run: | ls -R - name: Archive wheel as artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheel-artifact path: dist/*.whl - name: Archive sdist as artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: sdist-artifact path: dist/*.tar.gz diff --git a/.github/workflows/test-wheel.yml b/.github/workflows/test-wheel.yml index 295364b..3cfc1ba 100644 --- a/.github/workflows/test-wheel.yml +++ b/.github/workflows/test-wheel.yml @@ -46,7 +46,7 @@ jobs: - name: File listing run: ls -R - name: Fetch built wheel - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: wheel-artifact path: dist