diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1053a51..541c46a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,7 +31,7 @@ jobs: # Else the step will modify the comment # The created or modified comment id will be available as `steps.sendcomment.outputs.comment-id` - name: Building comment - uses: peter-evans/create-or-update-comment@v4 + uses: peter-evans/create-or-update-comment@v5 id: sendcomment with: comment-id: ${{ steps.searchcomment.outputs.comment-id }} @@ -72,7 +72,7 @@ jobs: # Create a new comment or modify the existing one - name: Success comment - uses: peter-evans/create-or-update-comment@v4 + uses: peter-evans/create-or-update-comment@v5 with: comment-id: ${{ steps.sendcomment.outputs.comment-id }} issue-number: ${{ github.event.pull_request.number }} @@ -85,7 +85,7 @@ jobs: # This action will only be executed if the workflow failed - name: Failure comment if: failure() - uses: peter-evans/create-or-update-comment@v4 + uses: peter-evans/create-or-update-comment@v5 with: comment-id: ${{ steps.sendcomment.outputs.comment-id }} issue-number: ${{ github.event.pull_request.number }}