From 0519ec4bb1b0e414e89c59744960a8b5c5420f15 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 09:27:52 +0000 Subject: [PATCH] ci(deps): bump actions/github-script in the github-actions group Bumps the github-actions group with 1 update: [actions/github-script](https://github.com/actions/github-script). Updates `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 dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/coverage-comment.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/coverage-comment.yaml b/.github/workflows/coverage-comment.yaml index 0332610d..829dbda4 100644 --- a/.github/workflows/coverage-comment.yaml +++ b/.github/workflows/coverage-comment.yaml @@ -17,7 +17,7 @@ jobs: steps: - name: Download coverage artifacts - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const artifacts = await github.rest.actions.listWorkflowRunArtifacts({ @@ -64,7 +64,7 @@ jobs: - name: Get PR number id: pr - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const { data: pullRequests } = await github.rest.pulls.list({ @@ -83,7 +83,7 @@ jobs: - name: Comment PR with coverage if: steps.pr.outputs.result != 'null' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const fs = require('fs');