From 144b94518c9c47daebde545833726d7dacbd367f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 May 2026 00:35:14 +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 1c006aa..38b8f88 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -48,7 +48,7 @@ jobs: - name: 3) Comment on PR if links broken if: failure() && github.event_name == 'pull_request' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const runUrl = `${context.payload.repository.html_url}/actions/runs/${context.runId}`; @@ -68,7 +68,7 @@ jobs: - name: 4) Create issue for scheduled failures # WHY: Track broken links found during scheduled checks # OBS: Only creates issue if none already open with 'broken-links' label if: failure() && github.event_name == 'schedule' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const date = new Date().toISOString().split("T")[0];