From 9b0bf4557241e6e9edbaa5cb931c6019f09398ad Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 May 2026 06:56:54 +0000 Subject: [PATCH] build(deps): bump actions/github-script from 7 to 9 Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...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/auto-assign.yml | 2 +- .github/workflows/nightly.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml index 6080a08..38586d4 100644 --- a/.github/workflows/auto-assign.yml +++ b/.github/workflows/auto-assign.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Assign PR to author - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | await github.rest.issues.addAssignees({ diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 71061db..aa97e36 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -72,7 +72,7 @@ jobs: - name: Create issue for broken links if: env.BROKEN_COUNT != '0' && env.BROKEN_COUNT != '' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const fs = require('fs'); @@ -111,7 +111,7 @@ jobs: - name: Create issue for test failures if: steps.tests.outcome == 'failure' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const fs = require('fs');