diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2d1116ef..d847c5ad 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,7 +16,7 @@ jobs: if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch' steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Update setup.py if manual release if: github.event_name == 'workflow_dispatch' run: | @@ -26,7 +26,7 @@ jobs: python setup.py sdist python setup.py bdist_wheel - name: pypi-publish - uses: pypa/gh-action-pypi-publish@v1 + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }}