diff options
| author | Cody Robibero <cody@robibe.ro> | 2022-03-30 19:09:07 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-30 19:09:07 -0600 |
| commit | c2a8294ac9588ceb18c762911fb9f6d4190456f2 (patch) | |
| tree | 223ca3ff2169f0a02c41b35af0e7d6bd50ff80ab /.github/workflows | |
| parent | b010d99139ffd3f7290de2b23db063718cc25bad (diff) | |
| parent | 11d882c0c22722c69e1b0366bfc1080a73e49024 (diff) | |
Merge pull request #7510 from jellyfin/dependabot/github_actions/peter-evans/create-or-update-comment-2
Bump peter-evans/create-or-update-comment from 1.4.5 to 2
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/commands.yml | 10 | ||||
| -rw-r--r-- | .github/workflows/openapi.yml | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/commands.yml b/.github/workflows/commands.yml index 730ac7f463..26cd24735c 100644 --- a/.github/workflows/commands.yml +++ b/.github/workflows/commands.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Notify as seen - uses: peter-evans/create-or-update-comment@v1.4.5 + uses: peter-evans/create-or-update-comment@v2 with: token: ${{ secrets.JF_BOT_TOKEN }} comment-id: ${{ github.event.comment.id }} @@ -39,7 +39,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Notify as seen - uses: peter-evans/create-or-update-comment@v1.4.5 + uses: peter-evans/create-or-update-comment@v2 if: ${{ github.event.comment != null }} with: token: ${{ secrets.JF_BOT_TOKEN }} @@ -54,7 +54,7 @@ jobs: - name: Notify as running id: comment_running - uses: peter-evans/create-or-update-comment@v1.4.5 + uses: peter-evans/create-or-update-comment@v2 if: ${{ github.event.comment != null }} with: token: ${{ secrets.JF_BOT_TOKEN }} @@ -89,7 +89,7 @@ jobs: exit ${retcode} - name: Notify with result success - uses: peter-evans/create-or-update-comment@v1.4.5 + uses: peter-evans/create-or-update-comment@v2 if: ${{ github.event.comment != null && success() }} with: token: ${{ secrets.JF_BOT_TOKEN }} @@ -104,7 +104,7 @@ jobs: reactions: hooray - name: Notify with result failure - uses: peter-evans/create-or-update-comment@v1.4.5 + uses: peter-evans/create-or-update-comment@v2 if: ${{ github.event.comment != null && failure() }} with: token: ${{ secrets.JF_BOT_TOKEN }} diff --git a/.github/workflows/openapi.yml b/.github/workflows/openapi.yml index 32b5942345..b8fe561b93 100644 --- a/.github/workflows/openapi.yml +++ b/.github/workflows/openapi.yml @@ -97,7 +97,7 @@ jobs: direction: last body-includes: openapi-diff-workflow-comment - name: Reply or edit difference comment (changed) - uses: peter-evans/create-or-update-comment@v1.4.5 + uses: peter-evans/create-or-update-comment@v2 if: ${{ steps.read-diff.outputs.body != '' }} with: issue-number: ${{ github.event.pull_request.number }} @@ -112,7 +112,7 @@ jobs: </details> - name: Edit difference comment (unchanged) - uses: peter-evans/create-or-update-comment@v1.4.5 + uses: peter-evans/create-or-update-comment@v2 if: ${{ steps.read-diff.outputs.body == '' && steps.find-comment.outputs.comment-id != '' }} with: issue-number: ${{ github.event.pull_request.number }} |
