From fa2f7f4e39791722f887e6d01acd42581d2dc3a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 12 Apr 2026 17:02:42 +0000 Subject: [PATCH] ci(deps)(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/coding-agent.yml | 2 +- .github/workflows/coherence-check.yml | 6 +++--- .github/workflows/snap-in-synchronization.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/coding-agent.yml b/.github/workflows/coding-agent.yml index fedb04d..40d8ac7 100644 --- a/.github/workflows/coding-agent.yml +++ b/.github/workflows/coding-agent.yml @@ -45,7 +45,7 @@ jobs: if: >- github.event_name == 'pull_request' && steps.simulate.outcome == 'success' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | // NOTE: If user-controlled data (e.g., PR titles or bodies) diff --git a/.github/workflows/coherence-check.yml b/.github/workflows/coherence-check.yml index 841970f..d7673a2 100644 --- a/.github/workflows/coherence-check.yml +++ b/.github/workflows/coherence-check.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Check for manual override id: check_override - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const prNumber = context.payload.pull_request.number; @@ -111,7 +111,7 @@ jobs: - name: Apply coherence label if: steps.check_override.outputs.skip != 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const score = parseInt('${{ steps.coherence.outputs.score }}') || 0; @@ -154,7 +154,7 @@ jobs: - name: Comment on PR if: steps.check_override.outputs.skip != 'true' && steps.coherence.outputs.exit_code != '0' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const score = '${{ steps.coherence.outputs.score }}'; diff --git a/.github/workflows/snap-in-synchronization.yml b/.github/workflows/snap-in-synchronization.yml index 645b08e..7455003 100644 --- a/.github/workflows/snap-in-synchronization.yml +++ b/.github/workflows/snap-in-synchronization.yml @@ -142,7 +142,7 @@ jobs: - name: Annotate snap-in on PR if: github.event_name == 'pull_request' && steps.snap_detection.outputs.snap_in == 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const rawResult = `${{ steps.snap_detection.outputs.result }}`; @@ -212,7 +212,7 @@ jobs: - name: Apply snap-in labels if: steps.snap_detection.outputs.snap_in == 'true' && github.event_name == 'pull_request' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const prNumber = context.payload.pull_request.number;