Skip to content

Commit 82956a9

Browse files
build(deps): bump peter-evans/create-or-update-comment from 4 to 5
Bumps [peter-evans/create-or-update-comment](https://github.com/peter-evans/create-or-update-comment) from 4 to 5. - [Release notes](https://github.com/peter-evans/create-or-update-comment/releases) - [Commits](peter-evans/create-or-update-comment@v4...v5) --- updated-dependencies: - dependency-name: peter-evans/create-or-update-comment dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 2723ba1 commit 82956a9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/demo-command.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Add run link to command comment
17-
uses: peter-evans/create-or-update-comment@v4
17+
uses: peter-evans/create-or-update-comment@v5
1818
with:
1919
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
2020
body: "[Workflow run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})"
@@ -63,7 +63,7 @@ jobs:
6363
}
6464
return $result
6565
- name: Comment with script result in code fence
66-
uses: peter-evans/create-or-update-comment@v4
66+
uses: peter-evans/create-or-update-comment@v5
6767
if: always()
6868
with:
6969
issue-number: ${{ github.event.client_payload.github.payload.issue.number }}
@@ -77,12 +77,12 @@ jobs:
7777
${{ steps.user-script.outputs.error }}
7878
```
7979
- name: Add reaction to command comment on success
80-
uses: peter-evans/create-or-update-comment@v4
80+
uses: peter-evans/create-or-update-comment@v5
8181
with:
8282
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
8383
reactions: hooray
8484
- name: Add reaction to command comment on failure
85-
uses: peter-evans/create-or-update-comment@v4
85+
uses: peter-evans/create-or-update-comment@v5
8686
if: failure()
8787
with:
8888
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}

.github/workflows/tag-command.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
tag_name: ${{ github.event.client_payload.slash_command.args.unnamed.arg1 }}
1414
steps:
1515
- name: Add run link to command comment
16-
uses: peter-evans/create-or-update-comment@v4
16+
uses: peter-evans/create-or-update-comment@v5
1717
with:
1818
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
1919
body: "[Workflow run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})"
@@ -33,7 +33,7 @@ jobs:
3333
git tag $tag $force || $(throw "git tag $tag $force failed.")
3434
git push origin $tag $force || $(throw "git push origin $tag $force failed.")
3535
- name: Add tag info and reaction to command comment
36-
uses: peter-evans/create-or-update-comment@v4
36+
uses: peter-evans/create-or-update-comment@v5
3737
with:
3838
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
3939
body: |
@@ -42,7 +42,7 @@ jobs:
4242
[tag]: https://github.com/${{ github.repository }}/tree/${{ env.tag_name }}
4343
reactions: hooray
4444
- name: Add reaction to command comment on failure
45-
uses: peter-evans/create-or-update-comment@v4
45+
uses: peter-evans/create-or-update-comment@v5
4646
if: failure()
4747
with:
4848
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}

0 commit comments

Comments
 (0)