From 46f253a3596b4ffc1a0db1220c5cb17f24363dee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Oct 2024 20:08:49 +0000 Subject: [PATCH] Bump actions/github-script from 6 to 7 Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/github-script 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 d36495e..8b6c4c7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,7 +27,7 @@ jobs: ref: ${{ github.event.workflow_run.head_branch }} - name: Create Check Run (Started) - uses: actions/github-script@v6 + uses: actions/github-script@v7 id: create_check_run with: script: | @@ -66,7 +66,7 @@ jobs: - name: Update PR Check Status (Completed) if: always() - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const conclusion = '${{ job.status }}' === 'success' ? 'success' : 'failure';