diff --git a/.github/workflows/dynamo_post_bin_diff.yml b/.github/workflows/dynamo_post_bin_diff.yml index d2fa1a2a31d..ced3e34b55b 100644 --- a/.github/workflows/dynamo_post_bin_diff.yml +++ b/.github/workflows/dynamo_post_bin_diff.yml @@ -44,14 +44,14 @@ jobs: direction: last - name: Create comment if: steps.find_comment.outputs.comment-id == '' && steps.set_details.outputs.DIFF != '' - uses: peter-evans/create-or-update-comment@v3 + uses: peter-evans/create-or-update-comment@v4 with: issue-number: ${{ steps.set_details.outputs.PR_NUMBER }} body: | ${{ steps.set_details.outputs.DIFF }} - name: Update comment if: steps.find_comment.outputs.comment-id != '' && steps.set_details.outputs.DIFF != '' - uses: peter-evans/create-or-update-comment@v3 + uses: peter-evans/create-or-update-comment@v4 with: comment-id: ${{ steps.find_comment.outputs.comment-id }} edit-mode: replace @@ -60,7 +60,7 @@ jobs: (♻️ Updated: ${{ steps.set_details.outputs.TIMESTAMP }}) - name: Update comment as resolved if: steps.find_comment.outputs.comment-id != '' && steps.set_details.outputs.DIFF == '' - uses: peter-evans/create-or-update-comment@v3 + uses: peter-evans/create-or-update-comment@v4 with: comment-id: ${{ steps.find_comment.outputs.comment-id }} edit-mode: replace diff --git a/.github/workflows/ui_smoke_tests.yml b/.github/workflows/ui_smoke_tests.yml index 4fbaaea6581..d5b1a6a3582 100644 --- a/.github/workflows/ui_smoke_tests.yml +++ b/.github/workflows/ui_smoke_tests.yml @@ -104,13 +104,13 @@ jobs: direction: last - name: Create comment if: env.PR_NUMBER != '' && steps.find_comment.outputs.comment-id == '' - uses: peter-evans/create-or-update-comment@v3 + uses: peter-evans/create-or-update-comment@v4 with: issue-number: ${{ env.PR_NUMBER }} body-path: pr_comment.md - name: Update comment if: env.PR_NUMBER != '' && steps.find_comment.outputs.comment-id != '' - uses: peter-evans/create-or-update-comment@v3 + uses: peter-evans/create-or-update-comment@v4 with: comment-id: ${{ steps.find_comment.outputs.comment-id }} edit-mode: replace