Skip to content

Commit

Permalink
Bump peter-evans/create-or-update-comment in /.github/workflows
Browse files Browse the repository at this point in the history
Bumps [peter-evans/create-or-update-comment](https://github.com/peter-evans/create-or-update-comment) from 3 to 4.
- [Release notes](https://github.com/peter-evans/create-or-update-comment/releases)
- [Commits](peter-evans/create-or-update-comment@v3...v4)

---
updated-dependencies:
- dependency-name: peter-evans/create-or-update-comment
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 29, 2024
1 parent 7011be6 commit f680fd0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dynamo_post_bin_diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ jobs:
direction: last
- name: Create comment
if: steps.find_comment.outputs.comment-id == '' && steps.set_details.outputs.DIFF != ''
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
with:
issue-number: ${{ steps.set_details.outputs.PR_NUMBER }}
body: |
${{ steps.set_details.outputs.DIFF }}
- name: Update comment
if: steps.find_comment.outputs.comment-id != '' && steps.set_details.outputs.DIFF != ''
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
with:
comment-id: ${{ steps.find_comment.outputs.comment-id }}
edit-mode: replace
Expand All @@ -60,7 +60,7 @@ jobs:
(♻️ Updated: ${{ steps.set_details.outputs.TIMESTAMP }})
- name: Update comment as resolved
if: steps.find_comment.outputs.comment-id != '' && steps.set_details.outputs.DIFF == ''
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
with:
comment-id: ${{ steps.find_comment.outputs.comment-id }}
edit-mode: replace
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ui_smoke_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,13 @@ jobs:
direction: last
- name: Create comment
if: env.PR_NUMBER != '' && steps.find_comment.outputs.comment-id == ''
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
with:
issue-number: ${{ env.PR_NUMBER }}
body-path: pr_comment.md
- name: Update comment
if: env.PR_NUMBER != '' && steps.find_comment.outputs.comment-id != ''
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
with:
comment-id: ${{ steps.find_comment.outputs.comment-id }}
edit-mode: replace
Expand Down

0 comments on commit f680fd0

Please sign in to comment.