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: