From 5a0d62687c572411409972d200b854e090c5089c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Apr 2026 14:13:05 +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/exempt-creators-backfill.yml | 2 +- .github/workflows/exempt-creators.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/exempt-creators-backfill.yml b/.github/workflows/exempt-creators-backfill.yml index 52f08a65..b7519853 100644 --- a/.github/workflows/exempt-creators-backfill.yml +++ b/.github/workflows/exempt-creators-backfill.yml @@ -15,7 +15,7 @@ jobs: backfill: runs-on: ubuntu-latest steps: - - uses: actions/github-script@v8 + - uses: actions/github-script@v9 with: script: | const exemptLabel = 'exempt'; diff --git a/.github/workflows/exempt-creators.yml b/.github/workflows/exempt-creators.yml index f75a92d9..71154ed0 100644 --- a/.github/workflows/exempt-creators.yml +++ b/.github/workflows/exempt-creators.yml @@ -25,7 +25,7 @@ jobs: contains(fromJSON('["rmcrackan","Mbucari"]'), github.event.issue.user.login)) || (github.event_name == 'pull_request' && contains(fromJSON('["rmcrackan","Mbucari"]'), github.event.pull_request.user.login)) - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const number = context.issue?.number || context.payload.pull_request?.number;