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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2026-03-11 09:33:56 -07:00
committed by GitHub
parent 7e8b4cc1f5
commit e7153ed180

View File

@@ -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 }};