From d604539e0bf1f538d2ddf70214a08932441e9487 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Apr 2026 05:09:26 +0000 Subject: [PATCH] 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/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ac2e1dc..7a0e54a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: ref: ${{ github.event.workflow_run.head_sha }} - name: Create Check Run (Started) - uses: actions/github-script@v8 + uses: actions/github-script@v9 id: create_check_run with: script: | @@ -75,7 +75,7 @@ jobs: - name: Update PR Check Status (Completed) if: always() - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const conclusion = '${{ job.status }}' === 'success' ? 'success' : 'failure';