From 47126feef6a36cbb4083584834d5f3a2976f70c1 Mon Sep 17 00:00:00 2001 From: Bobby Jackson Date: Thu, 26 Sep 2024 14:43:56 -0500 Subject: [PATCH] FIX: Github actions to release --- .github/workflows/pypi-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index b8b6dbf..1557139 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -36,7 +36,7 @@ jobs: else echo "✅ Looks good" fi - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: releases path: dist @@ -49,7 +49,7 @@ jobs: name: Install Python with: python-version: "3.x" - - uses: actions/download-artifact@v4.1.7 + - uses: actions/download-artifact@v4 with: name: releases path: dist @@ -62,7 +62,7 @@ jobs: if: github.event_name == 'release' runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v4.1.7 + - uses: actions/download-artifact@v4 with: name: releases path: dist @@ -71,4 +71,4 @@ jobs: with: user: __token__ password: ${{ secrets.PYPI_TOKEN }} - verbose: true \ No newline at end of file + verbose: true