From a5e3a626d58328855f82453241353deee992d617 Mon Sep 17 00:00:00 2001 From: James Smith Date: Wed, 7 Dec 2022 15:50:11 +1100 Subject: [PATCH] Revert "ci.yml: pin pypa release action v1.5 (#764)" This reverts commit c0f67af1b391f75b49947d9e3302bca207b548d0. --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32d1dd743c..e4cf0be6f4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -268,7 +268,7 @@ jobs: - run: make examples - run: make build - name: Publish mcap to TestPyPI - uses: pypa/gh-action-pypi-publish@release/v1.5 + uses: pypa/gh-action-pypi-publish@release/v1 if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }} with: user: __token__ @@ -278,7 +278,7 @@ jobs: skip_existing: true - name: Publish mcap-protobuf-support to TestPyPI - uses: pypa/gh-action-pypi-publish@release/v1.5 + uses: pypa/gh-action-pypi-publish@release/v1 if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }} with: user: __token__ @@ -288,7 +288,7 @@ jobs: packages_dir: python/mcap-protobuf-support/dist - name: Publish mcap-ros1-support to TestPyPI - uses: pypa/gh-action-pypi-publish@release/v1.5 + uses: pypa/gh-action-pypi-publish@release/v1 if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }} with: user: __token__ @@ -298,7 +298,7 @@ jobs: packages_dir: python/mcap-ros1-support/dist - name: Publish mcap-ros2-support to TestPyPI - uses: pypa/gh-action-pypi-publish@release/v1.5 + uses: pypa/gh-action-pypi-publish@release/v1 if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }} with: user: __token__ @@ -311,7 +311,7 @@ jobs: if: | !github.event.pull_request.head.repo.fork && startsWith(github.ref, 'refs/tags/releases/python/mcap/v') - uses: pypa/gh-action-pypi-publish@release/v1.5 + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} @@ -321,7 +321,7 @@ jobs: if: | !github.event.pull_request.head.repo.fork && startsWith(github.ref, 'refs/tags/releases/python/mcap-protobuf-support/v') - uses: pypa/gh-action-pypi-publish@release/v1.5 + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} @@ -331,7 +331,7 @@ jobs: if: | !github.event.pull_request.head.repo.fork && startsWith(github.ref, 'refs/tags/releases/python/mcap-ros1-support/v') - uses: pypa/gh-action-pypi-publish@release/v1.5 + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} @@ -341,7 +341,7 @@ jobs: if: | !github.event.pull_request.head.repo.fork && startsWith(github.ref, 'refs/tags/releases/python/mcap-ros2-support/v') - uses: pypa/gh-action-pypi-publish@release/v1.5 + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }}