From c564bcdef6abf40f383f682e784999c5b46bbe9b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Apr 2026 10:12:48 -0400 Subject: [PATCH] ci: bump actions/github-script from 8 to 9 in the github-actions group across 1 directory (#39121) ci: bump actions/github-script Bumps the github-actions group with 1 update in the / directory: [actions/github-script](https://github.com/actions/github-script). Updates `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 dependency-group: github-actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/backport.yml | 2 +- .github/workflows/labeler_issue.yml | 2 +- .github/workflows/labeler_pr.yml | 2 +- .github/workflows/response.yml | 4 ++-- .github/workflows/reviewers_add.yml | 2 +- .github/workflows/reviewers_remove.yml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml index 3cd91acb46..3d16a5fa2b 100644 --- a/.github/workflows/backport.yml +++ b/.github/workflows/backport.yml @@ -34,7 +34,7 @@ jobs: - name: Create failed backport label if: ${{ steps.backport.outputs.was_successful == 'false' }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | github.rest.issues.addLabels({ diff --git a/.github/workflows/labeler_issue.yml b/.github/workflows/labeler_issue.yml index 75c7c1f2e9..ea12181148 100644 --- a/.github/workflows/labeler_issue.yml +++ b/.github/workflows/labeler_issue.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: check issue title - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const title = context.payload.issue.title; diff --git a/.github/workflows/labeler_pr.yml b/.github/workflows/labeler_pr.yml index 3d0e20e35f..841a846460 100644 --- a/.github/workflows/labeler_pr.yml +++ b/.github/workflows/labeler_pr.yml @@ -90,7 +90,7 @@ jobs: pull-requests: write steps: - if: startsWith(github.base_ref, 'release') - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | github.rest.issues.addLabels({ diff --git a/.github/workflows/response.yml b/.github/workflows/response.yml index b104334bb4..235888b42f 100644 --- a/.github/workflows/response.yml +++ b/.github/workflows/response.yml @@ -19,7 +19,7 @@ jobs: with: persist-credentials: false - - uses: actions/github-script@v8 + - uses: actions/github-script@v9 with: script: | const script = require('./.github/scripts/close_unresponsive.js') @@ -36,7 +36,7 @@ jobs: with: persist-credentials: false - - uses: actions/github-script@v8 + - uses: actions/github-script@v9 with: script: | const script = require('./.github/scripts/remove_response_label.js') diff --git a/.github/workflows/reviewers_add.yml b/.github/workflows/reviewers_add.yml index 5f07f4994e..c18dd9f12a 100644 --- a/.github/workflows/reviewers_add.yml +++ b/.github/workflows/reviewers_add.yml @@ -18,7 +18,7 @@ jobs: persist-credentials: false - name: 'Request reviewers' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const script = require('./.github/scripts/reviewers_add.js') diff --git a/.github/workflows/reviewers_remove.yml b/.github/workflows/reviewers_remove.yml index 98a207264e..42e17fccbd 100644 --- a/.github/workflows/reviewers_remove.yml +++ b/.github/workflows/reviewers_remove.yml @@ -16,7 +16,7 @@ jobs: persist-credentials: false - name: 'Remove reviewers' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const script = require('./.github/scripts/reviewers_remove.js')