From 4e1dbcb43c50109a70129405e0540e7b0a634d10 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 2 May 2026 13:58:23 +0000 Subject: [PATCH] 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/cron-cost-cap.yml | 2 +- .github/workflows/health-check.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cron-cost-cap.yml b/.github/workflows/cron-cost-cap.yml index c7eef64..9d25186 100644 --- a/.github/workflows/cron-cost-cap.yml +++ b/.github/workflows/cron-cost-cap.yml @@ -41,7 +41,7 @@ jobs: [ "$code" = "200" ] - name: Alert on real failure if: failure() && steps.call.outputs.skipped != 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | await github.rest.issues.create({ diff --git a/.github/workflows/health-check.yml b/.github/workflows/health-check.yml index 02e6d87..0d82316 100644 --- a/.github/workflows/health-check.yml +++ b/.github/workflows/health-check.yml @@ -32,7 +32,7 @@ jobs: [ "$fails" -lt 3 ] - name: Open issue on 3/3 fail if: failure() - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const title = `health-check: ${process.env.TARGET_URL} failing`;