diff --git a/.github/workflows/command-deploy-pr-snapshot.yaml b/.github/workflows/command-deploy-pr-snapshot.yaml index aedc2c14..a7ca8789 100644 --- a/.github/workflows/command-deploy-pr-snapshot.yaml +++ b/.github/workflows/command-deploy-pr-snapshot.yaml @@ -52,7 +52,7 @@ jobs: # Add reaction to the comment - name: Add success reaction - uses: peter-evans/create-or-update-comment@v4 + uses: peter-evans/create-or-update-comment@v5 if: ${{ success() }} with: token: ${{ secrets.GITHUB_TOKEN }} @@ -62,7 +62,7 @@ jobs: # Add comment (for historic reasons) - name: Add success comment - uses: peter-evans/create-or-update-comment@v4 + uses: peter-evans/create-or-update-comment@v5 if: ${{ success() }} with: token: ${{ secrets.GITHUB_TOKEN }} @@ -89,7 +89,7 @@ jobs: This is a temporary snapshot preview available only for convenience. - name: Add failure response - uses: peter-evans/create-or-update-comment@v4 + uses: peter-evans/create-or-update-comment@v5 if: ${{ failure() }} with: token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/command-help.yaml b/.github/workflows/command-help.yaml index d31e4686..30e78ac8 100644 --- a/.github/workflows/command-help.yaml +++ b/.github/workflows/command-help.yaml @@ -17,7 +17,7 @@ jobs: PAYLOAD_CONTEXT: ${{ toJson(github.event.client_payload) }} run: echo "$PAYLOAD_CONTEXT" - name: Update comment - uses: peter-evans/create-or-update-comment@v4 + uses: peter-evans/create-or-update-comment@v5 with: token: ${{ secrets.GITHUB_TOKEN }} repository: ${{ github.event.client_payload.github.payload.repository.full_name }} diff --git a/.github/workflows/command-merge-release.yaml b/.github/workflows/command-merge-release.yaml index 094e7967..d84af8c8 100644 --- a/.github/workflows/command-merge-release.yaml +++ b/.github/workflows/command-merge-release.yaml @@ -92,7 +92,7 @@ jobs: # Add reaction to the comment - name: Add success response - uses: peter-evans/create-or-update-comment@v4 + uses: peter-evans/create-or-update-comment@v5 if: ${{ success() }} with: token: ${{ secrets.GITHUB_TOKEN }} @@ -103,7 +103,7 @@ jobs: > Success: Action was successful! Check the [logs](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) - name: Add failure response - uses: peter-evans/create-or-update-comment@v4 + uses: peter-evans/create-or-update-comment@v5 if: ${{ failure() }} with: token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/command-merge-snapshot.yaml b/.github/workflows/command-merge-snapshot.yaml index 95370e8e..b76ddc96 100644 --- a/.github/workflows/command-merge-snapshot.yaml +++ b/.github/workflows/command-merge-snapshot.yaml @@ -80,7 +80,7 @@ jobs: # Add reaction to the comment - name: Add success reaction - uses: peter-evans/create-or-update-comment@v4 + uses: peter-evans/create-or-update-comment@v5 if: ${{ success() }} with: token: ${{ secrets.GITHUB_TOKEN }} @@ -91,7 +91,7 @@ jobs: > Success: Action was successful! Check the [logs](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) - name: Add failure response - uses: peter-evans/create-or-update-comment@v4 + uses: peter-evans/create-or-update-comment@v5 if: ${{ failure() }} with: token: ${{ secrets.GITHUB_TOKEN }}