From fa0cbac6405e25a3634e8f18c5e4e53635295d6e Mon Sep 17 00:00:00 2001 From: Jan Kadlec Date: Tue, 29 Jul 2025 15:53:11 +0200 Subject: [PATCH] chore: fix gh-action-pypi-publish version JIRA: TRIVIAL risk: low --- .github/workflows/build-release.yaml | 2 +- .github/workflows/dev-release.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-release.yaml b/.github/workflows/build-release.yaml index 74e17ce3c..6a02e31f3 100644 --- a/.github/workflows/build-release.yaml +++ b/.github/workflows/build-release.yaml @@ -103,7 +103,7 @@ jobs: name: artifacts_${{ matrix.component }} path: dist/${{ matrix.component }} - name: Push ${{ matrix.component}} to pypi - uses: pypa/gh-action-pypi-publish@v1 + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} diff --git a/.github/workflows/dev-release.yaml b/.github/workflows/dev-release.yaml index 615d34349..489d501cd 100644 --- a/.github/workflows/dev-release.yaml +++ b/.github/workflows/dev-release.yaml @@ -43,7 +43,7 @@ jobs: cd ${{ matrix.component }} python -m build - name: Push ${{ matrix.component}} to pypi - uses: pypa/gh-action-pypi-publish@v1 + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }}