Bump actions/github-script from 8 to 9 (#310716)

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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2026-04-16 07:43:39 -07:00
committed by GitHub
parent 2b553d1870
commit de423905d4
2 changed files with 5 additions and 5 deletions
@@ -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 }};
+1 -1
View File
@@ -160,7 +160,7 @@ jobs:
- name: Post PR comment
if: github.event_name == 'pull_request' && (steps.diff.outputs.has_changes == 'true' || steps.blocks-ci.outputs.match == 'false')
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const marker = '<!-- screenshot-diff-report -->';