diff --git a/.github/workflows/cd_release.yml b/.github/workflows/cd_release.yml index 7627596c..dfb5c4ac 100644 --- a/.github/workflows/cd_release.yml +++ b/.github/workflows/cd_release.yml @@ -279,7 +279,7 @@ jobs: with: token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} branch: ${{ inputs.release_branch }} - sleep: 15 + pre_sleep: 15 force: true tags: true unprotect_reviews: true @@ -308,7 +308,7 @@ jobs: - name: Publish package to TestPyPI if: inputs.test && inputs.publish_on_pypi && inputs.python_package - uses: pypa/gh-action-pypi-publish@v1.8.10 + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PyPI_token }} @@ -316,7 +316,7 @@ jobs: - name: Publish package to PyPI if: ( ! inputs.test ) && inputs.publish_on_pypi && inputs.python_package - uses: pypa/gh-action-pypi-publish@v1.8.10 + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PyPI_token }} diff --git a/.github/workflows/ci_automerge_prs.yml b/.github/workflows/ci_automerge_prs.yml index e28c8277..9fd89769 100644 --- a/.github/workflows/ci_automerge_prs.yml +++ b/.github/workflows/ci_automerge_prs.yml @@ -67,7 +67,7 @@ jobs: with: token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} branch: ${{ github.event.pull_request.head.ref }} - sleep: 15 + pre_sleep: 15 unprotect_reviews: true - name: Activate auto-merge diff --git a/.github/workflows/ci_cd_updated_default_branch.yml b/.github/workflows/ci_cd_updated_default_branch.yml index c2dfe27e..68798a2d 100644 --- a/.github/workflows/ci_cd_updated_default_branch.yml +++ b/.github/workflows/ci_cd_updated_default_branch.yml @@ -354,7 +354,7 @@ jobs: with: token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} branch: ${{ inputs.default_repo_branch }} - sleep: 15 + pre_sleep: 15 force: true tags: true unprotect_reviews: true @@ -496,5 +496,5 @@ jobs: with: token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} branch: ${{ inputs.permanent_dependencies_branch }} - sleep: 15 + pre_sleep: 15 force: ${{ env.FORCE_PUSH }}