From 6d8d46d161952beb6025bcd419c69f1b443b8ec5 Mon Sep 17 00:00:00 2001 From: Eduardo Serrano Date: Sun, 4 Sep 2022 23:50:49 +0100 Subject: [PATCH 1/2] update usage on README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d2ed66f..f8a23bb 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ This is a implementation of what is described in [the docs for create-or-update- ```yml - name: Update PR with test results - uses: edumserrano/find-create-or-update-comment@v1 + uses: edumserrano/find-create-or-update-comment@v1.0.0 with: issue-number: ${{ github.event.pull_request.number }} body-includes: '' From 7d1c10fbc2ce76021fd27ae55b44c7da4442438d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20=C5=A0=C5=A5ov=C3=AD=C4=8Dek?= <14262802+stovmascript@users.noreply.github.com> Date: Sun, 8 Jan 2023 11:44:22 +0100 Subject: [PATCH 2/2] update dependencies (#3) --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 01c0831..ce3a175 100644 --- a/action.yml +++ b/action.yml @@ -38,7 +38,7 @@ runs: using: "composite" steps: - name: Find Comment - uses: peter-evans/find-comment@v1.3.0 + uses: peter-evans/find-comment@v2.2.0 id: find-comment with: token: ${{ inputs.token }} @@ -47,7 +47,7 @@ runs: body-includes: ${{ inputs.body-includes }} comment-author: ${{ inputs.comment-author }} - name: Create comment - uses: peter-evans/create-or-update-comment@v1.4.5 + uses: peter-evans/create-or-update-comment@v2.1.0 if: steps.find-comment.outputs.comment-id == 0 with: token: ${{ inputs.token }} @@ -56,7 +56,7 @@ runs: body: ${{ inputs.body }} reactions: ${{ inputs.reactions }} - name: Update comment - uses: peter-evans/create-or-update-comment@v1.4.5 + uses: peter-evans/create-or-update-comment@v2.1.0 if: steps.find-comment.outputs.comment-id != 0 with: token: ${{ inputs.token }}