Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/detect-breaking-changes-levitate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -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: |
Expand All @@ -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:
Expand Down Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/feature-toggle-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down