From a865bf5c44e4be8dcba690beb17b1c31e211f796 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Jan 2024 02:12:53 +0000 Subject: [PATCH] build(deps): bump peter-evans/create-or-update-comment from 3 to 4 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](https://github.com/peter-evans/create-or-update-comment/compare/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] --- .github/workflows/deploy-command.yml | 6 +++--- .github/workflows/tag-command.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy-command.yml b/.github/workflows/deploy-command.yml index 9122ced..d1075e0 100644 --- a/.github/workflows/deploy-command.yml +++ b/.github/workflows/deploy-command.yml @@ -14,7 +14,7 @@ jobs: PUSH_TAG: ${{ github.event.client_payload.slash_command.args.unnamed.arg1 == 'tag' }} steps: - name: Add deployment run link to command comment - uses: peter-evans/create-or-update-comment@v3 + uses: peter-evans/create-or-update-comment@v4 with: comment-id: ${{ github.event.client_payload.github.payload.comment.id }} body: "[Deployment run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})" @@ -43,7 +43,7 @@ jobs: Write-Host "::set-output name=tag::$v" - name: Add tag info to command comment if: env.PUSH_TAG == 'true' - uses: peter-evans/create-or-update-comment@v3 + uses: peter-evans/create-or-update-comment@v4 with: comment-id: ${{ github.event.client_payload.github.payload.comment.id }} body: "Pushed tag `${{ steps.tagpush.outputs.tag }}`" @@ -74,7 +74,7 @@ jobs: run: dotnet nuget push '*.nupkg' -s https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json -k ${{ github.token }} --skip-duplicate - name: Add reaction to command comment - uses: peter-evans/create-or-update-comment@v3 + uses: peter-evans/create-or-update-comment@v4 with: comment-id: ${{ github.event.client_payload.github.payload.comment.id }} reactions: hooray diff --git a/.github/workflows/tag-command.yml b/.github/workflows/tag-command.yml index 6dd4dfb..2ecb844 100644 --- a/.github/workflows/tag-command.yml +++ b/.github/workflows/tag-command.yml @@ -12,7 +12,7 @@ jobs: Configuration: Release steps: - name: Add run link to command comment - uses: peter-evans/create-or-update-comment@v3 + uses: peter-evans/create-or-update-comment@v4 with: comment-id: ${{ github.event.client_payload.github.payload.comment.id }} body: '[Deployment run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})' @@ -33,7 +33,7 @@ jobs: git push origin $v Write-Host "::set-output name=tag::$v" - name: Add tag info and reaction to command comment - uses: peter-evans/create-or-update-comment@v3 + uses: peter-evans/create-or-update-comment@v4 with: comment-id: ${{ github.event.client_payload.github.payload.comment.id }} body: 'Pushed tag `${{ steps.tagpush.outputs.tag }}`'