diff --git a/.github/workflows/semver-checks.yml b/.github/workflows/semver-checks.yml index d9fb9b5..87105a5 100644 --- a/.github/workflows/semver-checks.yml +++ b/.github/workflows/semver-checks.yml @@ -86,7 +86,7 @@ jobs: # Post a diagnostics comment if there are breaking changes and the PR has been marked as breaking. - name: Post a comment about the breaking changes. PR marked as breaking. if: ${{ (github.event_name == 'pull_request' || github.event_name == 'pull_request_target') && steps.check-changes.outputs.breaking == 'true' && steps.breaking-pr.outputs.breaking == 'true' }} - uses: marocchino/sticky-pull-request-comment@v2 + uses: marocchino/sticky-pull-request-comment@v3 with: header: semver-checks message: | @@ -104,7 +104,7 @@ jobs: # Post a help comment if there are breaking changes, and the PR hasn't been marked as breaking. - name: Post a comment about the breaking changes. PR *not* marked as breaking. if: ${{ (github.event_name == 'pull_request' || github.event_name == 'pull_request_target') && steps.check-changes.outputs.breaking == 'true' && steps.breaking-pr.outputs.breaking == 'false' }} - uses: marocchino/sticky-pull-request-comment@v2 + uses: marocchino/sticky-pull-request-comment@v3 with: header: semver-checks message: | @@ -130,7 +130,7 @@ jobs: # Delete previous comments when the issues have been resolved # This step doesn't run if any of the previous checks fails. - name: Delete previous comments - uses: marocchino/sticky-pull-request-comment@v2 + uses: marocchino/sticky-pull-request-comment@v3 if: ${{ (github.event_name == 'pull_request' || github.event_name == 'pull_request_target') && steps.check-changes.outputs.breaking == 'false' }} with: header: semver-checks