From e7153ed1801afee5994b60801d7ffc90e295a4e4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Mar 2026 09:33:56 -0700 Subject: [PATCH] Bump actions/github-script from 7 to 8 (#300759) Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 8. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/api-proposal-version-check.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/api-proposal-version-check.yml b/.github/workflows/api-proposal-version-check.yml index 80b14950656..ee082dee49f 100644 --- a/.github/workflows/api-proposal-version-check.yml +++ b/.github/workflows/api-proposal-version-check.yml @@ -35,7 +35,7 @@ jobs: steps: - name: Get PR info id: pr_info - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | let prNumber, headSha, baseSha; @@ -62,7 +62,7 @@ jobs: - name: Check for override comment id: check_override - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const prNumber = ${{ steps.pr_info.outputs.number }}; @@ -130,7 +130,7 @@ jobs: (github.event.comment.author_association == 'OWNER' || github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'COLLABORATOR') - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const headSha = '${{ steps.pr_info.outputs.head_sha }}'; @@ -241,7 +241,7 @@ jobs: - name: Post warning comment if: steps.check_override.outputs.override_found != 'true' && steps.version_check.outputs.version_changed == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const prNumber = ${{ steps.pr_info.outputs.number }};