From 5828bc6bee3d10e2fb0adb5e451fd303ec307591 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 11 Apr 2026 01:12:40 +0000 Subject: [PATCH] Bump actions/github-script from 8 to 9 Bumps [actions/github-script](https://github.com/actions/github-script) from 8 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v8...v9) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .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 ee082dee..4e4dc4e8 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@v8 + uses: actions/github-script@v9 with: script: | let prNumber, headSha, baseSha; @@ -62,7 +62,7 @@ jobs: - name: Check for override comment id: check_override - uses: actions/github-script@v8 + uses: actions/github-script@v9 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@v8 + uses: actions/github-script@v9 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@v8 + uses: actions/github-script@v9 with: script: | const prNumber = ${{ steps.pr_info.outputs.number }};