From 605fbad8ce3394a9972f909bd2f8c4f716a095be Mon Sep 17 00:00:00 2001 From: Jay Qi Date: Wed, 20 Mar 2024 13:43:15 -0400 Subject: [PATCH] Bump PyPI publish action --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 59463b3..5fe8a58 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: python -m build - name: Publish to Test PyPI - uses: pypa/gh-action-pypi-publish@v1.8.11 + uses: pypa/gh-action-pypi-publish@v1.8.14 with: user: ${{ secrets.PYPI_TEST_USERNAME }} password: ${{ secrets.PYPI_TEST_PASSWORD }} @@ -44,7 +44,7 @@ jobs: skip-existing: true - name: Publish to Production PyPI - uses: pypa/gh-action-pypi-publish@v1.8.11 + uses: pypa/gh-action-pypi-publish@v1.8.14 with: user: ${{ secrets.PYPI_PROD_USERNAME }} password: ${{ secrets.PYPI_PROD_PASSWORD }}