From f94d63678577d41e3b6b77fb03029f63fecd8d4f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Dec 2025 21:01:18 +0000 Subject: [PATCH] Bump actions/github-script from 6 to 8 Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 8. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6...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] --- .../workflows/detect-breaking-changes-levitate.yml | 14 +++++++------- .github/workflows/feature-toggle-cleanup.yml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/detect-breaking-changes-levitate.yml b/.github/workflows/detect-breaking-changes-levitate.yml index db9b8a303a4ff..0204759000e0a 100644 --- a/.github/workflows/detect-breaking-changes-levitate.yml +++ b/.github/workflows/detect-breaking-changes-levitate.yml @@ -133,7 +133,7 @@ jobs: - name: Get link for the Github Action job id: job - uses: actions/github-script@v6 + uses: actions/github-script@v8 with: script: | const name = 'Detect breaking changes'; @@ -180,7 +180,7 @@ jobs: name: levitate - name: Parsing levitate result - uses: actions/github-script@v6 + uses: actions/github-script@v8 id: levitate-run with: script: | @@ -191,7 +191,7 @@ jobs: # Check if label exists - name: Check if "levitate breaking change" label exists id: does-label-exist - uses: actions/github-script@v6 + uses: actions/github-script@v8 env: PR_NUMBER: ${{ github.event.pull_request.number }} with: @@ -267,7 +267,7 @@ jobs: # Add the label - name: Add "levitate breaking change" label if: steps.levitate-run.outputs.exit_code == 1 && steps.does-label-exist.outputs.result == 0 - uses: actions/github-script@v6 + uses: actions/github-script@v8 env: PR_NUMBER: ${{ steps.levitate-run.outputs.pr_number }} with: @@ -283,7 +283,7 @@ jobs: # Remove label (no more breaking changes) - name: Remove "levitate breaking change" label if: steps.levitate-run.outputs.exit_code == 0 && steps.does-label-exist.outputs.result == 1 - uses: actions/github-script@v6 + uses: actions/github-script@v8 env: PR_NUMBER: ${{ steps.levitate-run.outputs.pr_number }} with: @@ -301,7 +301,7 @@ jobs: # Related issue: https://github.com/renovatebot/renovate/issues/1908 - name: Add "grafana/plugins-platform-frontend" as a reviewer if: steps.levitate-run.outputs.exit_code - uses: actions/github-script@v6 + uses: actions/github-script@v8 env: PR_NUMBER: ${{ steps.levitate-run.outputs.pr_number }} with: @@ -318,7 +318,7 @@ jobs: # Remove reviewers (no more breaking changes) - name: Remove "grafana/plugins-platform-frontend" from the list of reviewers if: steps.levitate-run.outputs.exit_code == 0 - uses: actions/github-script@v6 + uses: actions/github-script@v8 env: PR_NUMBER: ${{ steps.levitate-run.outputs.pr_number }} with: diff --git a/.github/workflows/feature-toggle-cleanup.yml b/.github/workflows/feature-toggle-cleanup.yml index f157dfcb61491..63ee640ed3f64 100644 --- a/.github/workflows/feature-toggle-cleanup.yml +++ b/.github/workflows/feature-toggle-cleanup.yml @@ -19,7 +19,7 @@ jobs: - run: npm install csv-parse - name: Parse CVS file to see which Feature Toggles should be notified about id: parse-csv-file - uses: actions/github-script@v7 + uses: actions/github-script@v8 env: FEATURE_TOGGLES_CSV_FILE_PATH: "pkg/services/featuremgmt/toggles_gen.csv" with: