From f4002796d95fd01b73b1d98d67ac453ba81a6989 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 05:00:46 +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/emoji-check.yml | 2 +- .github/workflows/flakiness-detection.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/emoji-check.yml b/.github/workflows/emoji-check.yml index 006e25c3..3cd0ac66 100644 --- a/.github/workflows/emoji-check.yml +++ b/.github/workflows/emoji-check.yml @@ -56,7 +56,7 @@ jobs: - name: Comment on PR if: github.event_name == 'pull_request' && steps.emoji-check.outputs.emojis_found == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const fs = require('fs'); diff --git a/.github/workflows/flakiness-detection.yml b/.github/workflows/flakiness-detection.yml index 19033b6b..f6253bbb 100644 --- a/.github/workflows/flakiness-detection.yml +++ b/.github/workflows/flakiness-detection.yml @@ -79,7 +79,7 @@ jobs: - name: Comment on PR if flaky tests found if: failure() && steps.flakiness-check.outcome == 'failure' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const flakyTests = process.env.FLAKY_TESTS || 'Unknown tests';