From 38e553fb9c3284fe785601487d96fcb6169e7c75 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Sep 2025 22:03:13 +0000 Subject: [PATCH] chore(deps): 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/canary-comment.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/canary-comment.yml b/.github/workflows/canary-comment.yml index 69cebc03..f950dda1 100644 --- a/.github/workflows/canary-comment.yml +++ b/.github/workflows/canary-comment.yml @@ -19,7 +19,7 @@ jobs: # Get PR number from the workflow run - name: Get PR info id: pr-info - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | // Get the workflow run details @@ -60,7 +60,7 @@ jobs: - name: Extract canary info if: ${{ steps.pr-info.outputs.found == 'true' && steps.pr-info.outputs.has_canary_label == 'true' && github.event.workflow_run.conclusion == 'success' }} id: canary-info - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const workflowRun = context.payload.workflow_run;