From 2b32967c7ff3d7067034461db2f9b32d2d81aee8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Apr 2023 12:04:52 +0000 Subject: [PATCH] Bump peter-evans/create-or-update-comment from 2 to 3 (#2785) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [peter-evans/create-or-update-comment](https://github.com/peter-evans/create-or-update-comment) from 2 to 3.
Release notes

Sourced from peter-evans/create-or-update-comment's releases.

Create or Update Comment v3.0.0

What's new

What's Changed

New Contributors

Full Changelog: https://github.com/peter-evans/create-or-update-comment/compare/v2.1.1...v3.0.0

Create or Update Comment v2.1.1

⚙️ Fixes the recent Json5 vulnerability.

What's Changed

Full Changelog: https://github.com/peter-evans/create-or-update-comment/compare/v2.1.0...v2.1.1

Create or Update Comment v2.1.0

⭐ Adds input body-file, the path to a file containing the comment body.

What's Changed

New Contributors

Full Changelog: https://github.com/peter-evans/create-or-update-comment/compare/v2.0.1...v2.1.0

Create or Update Comment v2.0.1

⚙️ Bumps @actions/core to transition away from deprecated runner commands.

What's Changed

Full Changelog: https://github.com/peter-evans/create-or-update-comment/compare/v2.0.0...v2.0.1

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=peter-evans/create-or-update-comment&package-manager=github_actions&previous-version=2&new-version=3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
--- .github/workflows/test262.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test262.yml b/.github/workflows/test262.yml index fdce366efb..77b2d40631 100644 --- a/.github/workflows/test262.yml +++ b/.github/workflows/test262.yml @@ -76,7 +76,7 @@ jobs: - name: Update comment if: github.event_name == 'pull_request' && steps.previous-comment.outputs.comment-id - uses: peter-evans/create-or-update-comment@v2 + uses: peter-evans/create-or-update-comment@v3 continue-on-error: true with: comment-id: ${{ steps.previous-comment.outputs.comment-id }} @@ -89,7 +89,7 @@ jobs: - name: Write a new comment if: github.event_name == 'pull_request' && !steps.previous-comment.outputs.comment-id - uses: peter-evans/create-or-update-comment@v2 + uses: peter-evans/create-or-update-comment@v3 continue-on-error: true with: issue-number: ${{ steps.pr-number.outputs.pr }}