diff --git a/.github/workflows/build-pr-profile.yml b/.github/workflows/build-pr-profile.yml index 058ba7a..150c172 100644 --- a/.github/workflows/build-pr-profile.yml +++ b/.github/workflows/build-pr-profile.yml @@ -48,7 +48,7 @@ jobs: - name: Create early build comment if: steps.parse-command.outputs.build_requested == 'true' id: start-comment - uses: peter-evans/create-or-update-comment@v3 + uses: peter-evans/create-or-update-comment@v5 with: issue-number: ${{ github.event.pull_request.number }} comment-id: ${{ steps.find-comment.outputs.comment-id }} @@ -113,7 +113,7 @@ jobs: - name: Update comment with build results if: steps.build.outputs.build_success == 'true' - uses: peter-evans/create-or-update-comment@v3 + uses: peter-evans/create-or-update-comment@v5 with: comment-id: ${{ steps.start-comment.outputs.comment-id }} issue-number: ${{ github.event.pull_request.number }} @@ -131,7 +131,7 @@ jobs: - name: Update comment on build failure if: steps.parse-command.outputs.build_requested == 'true' && failure() - uses: peter-evans/create-or-update-comment@v3 + uses: peter-evans/create-or-update-comment@v5 with: comment-id: ${{ steps.start-comment.outputs.comment-id }} issue-number: ${{ github.event.pull_request.number }}