diff --git a/action.yml b/action.yml index 3a733c4..0e5a4c9 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@v1 + uses: peter-evans/create-or-update-comment@v2 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@v1 + uses: peter-evans/create-or-update-comment@v2 with: token: ${{ inputs.token }} issue-number: ${{ inputs.issue-number }}