From 6520a1902308cff5ee0fe8f66fbcc377936a7ab6 Mon Sep 17 00:00:00 2001 From: james-otten-pan <69821911+james-otten-pan@users.noreply.github.com> Date: Thu, 13 Nov 2025 16:10:46 -0500 Subject: [PATCH] Change PyPI publish action to specific commit SHA Updated the GitHub Action for publishing to PyPI to use a specific commit SHA. --- .github/workflows/manual_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/manual_release.yml b/.github/workflows/manual_release.yml index 06932cd..7d5ba33 100644 --- a/.github/workflows/manual_release.yml +++ b/.github/workflows/manual_release.yml @@ -31,7 +31,7 @@ jobs: coverage run -m unittest discover -v -s "./tests" -p "test*.py" - name: Publish - uses: pypa/gh-action-pypi-publish@release/v1 + uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # release/v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }}