diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index d5327ef11b..8ef67997cf 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -197,7 +197,7 @@ jobs: git-cliff-${{ env.RELEASE_VERSION }}-${{ matrix.build.TARGET }}.tar.gz - name: Publish to GitHub if: ${{ !contains(github.ref, '-') }} - uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 # v2 + uses: svenstaro/upload-release-action@6b7fa9f267e90b50a19fef07b3596790bb941741 # v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: git-cliff-${{ env.RELEASE_VERSION }}-${{ matrix.build.TARGET }}* @@ -208,7 +208,7 @@ jobs: body: "${{ needs.generate-changelog.outputs.release_body }}" - name: Publish to GitHub (pre-release) if: ${{ contains(github.ref, '-') }} - uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 # v2 + uses: svenstaro/upload-release-action@6b7fa9f267e90b50a19fef07b3596790bb941741 # v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: git-cliff-${{ env.RELEASE_VERSION }}-${{ matrix.build.TARGET }}* @@ -252,7 +252,7 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Build Python wheels (linux) if: matrix.build.PYPI_PUBLISH == true && startsWith(matrix.build.NAME, 'linux') - uses: PyO3/maturin-action@e10f6c464b90acceb5f640d31beda6d586ba7b4a # v1.49.3 + uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4 with: working-directory: pypi target: ${{ matrix.build.TARGET }} @@ -264,7 +264,7 @@ jobs: if: | matrix.build.PYPI_PUBLISH == true && (startsWith(matrix.build.OS, 'macos') || startsWith(matrix.build.OS, 'windows')) - uses: PyO3/maturin-action@e10f6c464b90acceb5f640d31beda6d586ba7b4a # v1.49.3 + uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4 with: working-directory: pypi target: ${{ matrix.build.TARGET }} @@ -272,7 +272,7 @@ jobs: sccache: "true" - name: Build Python wheels (musl) if: matrix.build.PYPI_PUBLISH == true && endsWith(matrix.build.OS, 'musl') - uses: PyO3/maturin-action@e10f6c464b90acceb5f640d31beda6d586ba7b4a # v1.49.3 + uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4 with: working-directory: pypi target: ${{ matrix.build.TARGET }} @@ -328,7 +328,7 @@ jobs: pattern: wheels-* merge-multiple: true - name: Publish to PyPI - uses: PyO3/maturin-action@e10f6c464b90acceb5f640d31beda6d586ba7b4a # v1.49.3 + uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4 env: MATURIN_PYPI_TOKEN: ${{ vars.USE_TESTPYPI == 'true' && secrets.TESTPYPI_API_TOKEN || secrets.PYPI_API_TOKEN }} MATURIN_REPOSITORY: ${{ vars.USE_TESTPYPI == 'true' && 'testpypi' || 'pypi' }} @@ -372,7 +372,7 @@ jobs: git-cliff-${{ env.RELEASE_VERSION }}.deb - name: Upload the release if: ${{ !contains(github.ref, '-') }} - uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 # v2 + uses: svenstaro/upload-release-action@6b7fa9f267e90b50a19fef07b3596790bb941741 # v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: git-cliff-${{ env.RELEASE_VERSION }}.deb @@ -381,7 +381,7 @@ jobs: body: "${{ needs.generate-changelog.outputs.release_body }}" - name: Upload the pre-release if: ${{ contains(github.ref, '-') }} - uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 # v2 + uses: svenstaro/upload-release-action@6b7fa9f267e90b50a19fef07b3596790bb941741 # v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: git-cliff-${{ env.RELEASE_VERSION }}.deb @@ -423,7 +423,7 @@ jobs: git-cliff-${{ env.RELEASE_VERSION }}.x86_64.rpm - name: Upload the release if: ${{ !contains(github.ref, '-') }} - uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 # v2 + uses: svenstaro/upload-release-action@6b7fa9f267e90b50a19fef07b3596790bb941741 # v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: git-cliff-${{ env.RELEASE_VERSION }}.x86_64.rpm @@ -432,7 +432,7 @@ jobs: body: "${{ needs.generate-changelog.outputs.release_body }}" - name: Upload the pre-release if: ${{ contains(github.ref, '-') }} - uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 # v2 + uses: svenstaro/upload-release-action@6b7fa9f267e90b50a19fef07b3596790bb941741 # v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: git-cliff-${{ env.RELEASE_VERSION }}.x86_64.rpm diff --git a/.github/workflows/check-semver.yml b/.github/workflows/check-semver.yml index c894d4b587..c33f0aa085 100644 --- a/.github/workflows/check-semver.yml +++ b/.github/workflows/check-semver.yml @@ -31,7 +31,7 @@ jobs: steps: - name: Comment if: ${{ needs.check-semver.outputs.error_message != null }} - uses: marocchino/sticky-pull-request-comment@d2ad0de260ae8b0235ce059e63f2949ba9e05943 # v2.9.3 + uses: marocchino/sticky-pull-request-comment@773744901bac0e8cbb5a0dc842800d45e9b2b405 # v2.9.4 with: header: pr-semver-check-error message: | @@ -47,7 +47,7 @@ jobs: - name: Delete comment if: ${{ needs.check-semver.outputs.error_message == null }} - uses: marocchino/sticky-pull-request-comment@d2ad0de260ae8b0235ce059e63f2949ba9e05943 # v2.9.3 + uses: marocchino/sticky-pull-request-comment@773744901bac0e8cbb5a0dc842800d45e9b2b405 # v2.9.4 with: header: pr-semver-check-error delete: true