diff --git a/.github/workflows/deployment-management-bot.yml b/.github/workflows/deployment-management-bot.yml index b8b74c89..bc4b4fce 100644 --- a/.github/workflows/deployment-management-bot.yml +++ b/.github/workflows/deployment-management-bot.yml @@ -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: | @@ -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 || @@ -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: | diff --git a/.github/workflows/instance-configuration-validation-bot.yml b/.github/workflows/instance-configuration-validation-bot.yml index 94151a0a..8355775e 100644 --- a/.github/workflows/instance-configuration-validation-bot.yml +++ b/.github/workflows/instance-configuration-validation-bot.yml @@ -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 }} @@ -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 }} @@ -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' @@ -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 }} @@ -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 }}