From ece5ed987b7770da8940956ef227a2a415eaa5e0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 May 2026 03:03:12 +0000 Subject: [PATCH] (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/links.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index d7c9ffd..69a2e54 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -59,7 +59,7 @@ jobs: - name: 3) Comment on PR if links broken if: failure() && github.event_name == 'pull_request' && env.REPORT_FAILURES == 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const runUrl = `${context.payload.repository.html_url}/actions/runs/${context.runId}`; @@ -80,7 +80,7 @@ jobs: # WHY: Track broken links found during scheduled checks # OBS: Only creates issue if no open issue from github-actions bot exists if: failure() && github.event_name == 'schedule' && env.REPORT_FAILURES == 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const owner = context.repo.owner;