From c22d74adc3861e22ea38109da6d7787d6f2a8798 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 3 Oct 2024 23:11:13 -0700 Subject: [PATCH] Bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.3 (#391) * Bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.3 Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from 1.9.0 to 1.10.3. - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0...f7600683efdcb7656dec5b29656edb7bc586e597) --- updated-dependencies: - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * remove unnecessary token for trusted publishing --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Brendan <2bndy5@gmail.com> --- .github/workflows/build.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 626939a5..0dd35991 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -257,18 +257,13 @@ jobs: name: python-packages-Linux path: dist - name: Publish to PyPI (test server) - uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # v1.9.0 + uses: pypa/gh-action-pypi-publish@f7600683efdcb7656dec5b29656edb7bc586e597 # v1.10.3 continue-on-error: true with: - user: __token__ - password: ${{ secrets.pypi_test_token }} repository-url: https://test.pypi.org/legacy/ if: ${{ ! startsWith(github.ref, 'refs/tags/v') }} - name: Publish to PyPI (main server) - uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # v1.9.0 - with: - user: __token__ - password: ${{ secrets.pypi_token }} + uses: pypa/gh-action-pypi-publish@f7600683efdcb7656dec5b29656edb7bc586e597 # v1.10.3 if: ${{ startsWith(github.ref, 'refs/tags/v') }} - uses: actions/checkout@v4 if: ${{ startsWith(github.ref, 'refs/tags/v') }}