From 55684948c266540df371dc9c8ce63829330459c3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Sep 2025 05:13:49 +0000 Subject: [PATCH] Bump actions/github-script from 7 to 8 Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 8. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '8' 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 11a5e7f..d112e19 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@v7 + uses: actions/github-script@v8 id: create_check_run with: script: | @@ -74,7 +74,7 @@ jobs: - name: Update PR Check Status (Completed) if: always() - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const conclusion = '${{ job.status }}' === 'success' ? 'success' : 'failure';