diff --git a/action.yml b/action.yml index 6eb61a9..6e52bf9 100644 --- a/action.yml +++ b/action.yml @@ -88,7 +88,7 @@ runs: - name: Update Comment if: inputs.action == 'update' && steps.find-comment.outputs.comment-id != '' - uses: peter-evans/create-or-update-comment@v2 + uses: peter-evans/create-or-update-comment@v3 with: token: ${{ inputs.token }} comment-id: ${{ steps.find-comment.outputs.comment-id }} @@ -97,7 +97,7 @@ runs: - name: Create Comment if: inputs.action == 'create' || inputs.action == 'create-clean' || (inputs.action == 'update' && steps.find-comment.outputs.comment-id == '') - uses: peter-evans/create-or-update-comment@v2 + uses: peter-evans/create-or-update-comment@v3 with: token: ${{ inputs.token }} issue-number: ${{ inputs.issue-number }}