Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/deployment-management-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
steps.cdp-members.outputs.members,
steps.safe-username.outputs.username
)
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
with:
issue-number: ${{ github.event.issue.number }}
body: |
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
echo "::set-output name=content::$content"

- name: Error Early - Message
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
if: |
fromJSON(steps.generation-options.outputs.content).scraper_options == null ||
fromJSON(steps.generation-options.outputs.content).maintainer_name == null ||
Expand Down Expand Up @@ -281,7 +281,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}

- name: Log Success
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
with:
issue-number: ${{ github.event.issue.number }}
body: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/instance-configuration-validation-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
body-includes: 'Form Validation Results'

- name: Set Initial Comment State
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
if: ${{ steps.find-validation-results-comment-pre.outputs.comment-id == 0 }}
with:
issue-number: ${{ github.event.issue.number }}
Expand All @@ -51,7 +51,7 @@ jobs:
_This comment was written by a bot!_

- name: Reset Initial Comment State
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
if: ${{ steps.find-validation-results-comment-pre.outputs.comment-id != 0 }}
with:
comment-id: ${{ steps.find-validation-results-comment-pre.outputs.comment-id }}
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
body-includes: 'Form Validation Results'

- name: Post Validation Results
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
with:
comment-id: ${{ steps.find-validation-results-comment-post.outputs.comment-id }}
edit-mode: 'replace'
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
body-includes: 'Generated Infrastructure Slug'

- name: Set Initial Infra Slug Comment State
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
if: ${{ steps.find-infra-slug-comment.outputs.comment-id == 0 }}
with:
issue-number: ${{ github.event.issue.number }}
Expand All @@ -196,7 +196,7 @@ jobs:
_This comment was written by a bot!_

- name: Reset Infra Slug Comment State
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
if: ${{ steps.find-infra-slug-comment.outputs.comment-id != 0 }}
with:
comment-id: ${{ steps.find-infra-slug-comment.outputs.comment-id }}
Expand Down