From d63b1a52c1cc64581847e91f320df7d8446f9c4f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Apr 2026 11:07:29 +0000 Subject: [PATCH] build(deps): 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/benchmark-comment.yml | 2 +- .github/workflows/issue-labeler.yml | 2 +- .github/workflows/pr-labeler.yml | 2 +- .github/workflows/pr-test-guard.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/benchmark-comment.yml b/.github/workflows/benchmark-comment.yml index f317c89c..89249dcf 100644 --- a/.github/workflows/benchmark-comment.yml +++ b/.github/workflows/benchmark-comment.yml @@ -24,7 +24,7 @@ jobs: if-no-files-found: warn - name: Comment PR with benchmark results - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const fs = require('fs'); diff --git a/.github/workflows/issue-labeler.yml b/.github/workflows/issue-labeler.yml index c6afdc22..c98ca466 100644 --- a/.github/workflows/issue-labeler.yml +++ b/.github/workflows/issue-labeler.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Ensure common labels exist - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const labels = [ diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml index efd5340b..5e8cafb4 100644 --- a/.github/workflows/pr-labeler.yml +++ b/.github/workflows/pr-labeler.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Ensure common labels exist - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const labels = [ diff --git a/.github/workflows/pr-test-guard.yml b/.github/workflows/pr-test-guard.yml index e6f458a4..fd4bf1e8 100644 --- a/.github/workflows/pr-test-guard.yml +++ b/.github/workflows/pr-test-guard.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Check override labels id: override - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const labels = (context.payload.pull_request.labels || []).map(l => l.name.toLowerCase());