Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down