Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit 8588713

Browse files
chore(actions)(deps): bump actions/github-script from 6 to 7
Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v6...v7) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent e2a7606 commit 8588713

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

.github/workflows/action_review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
3232
- name: Analyze Workflows
3333
id: analyze
34-
uses: actions/github-script@v6
34+
uses: actions/github-script@v7
3535
with:
3636
script: |
3737
const fs = require('fs');

.github/workflows/ai-labeling.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Validate AI Labels
14-
uses: actions/github-script@v6
14+
uses: actions/github-script@v7
1515
with:
1616
script: |
1717
const issue = context.payload.issue || context.payload.pull_request;
@@ -67,7 +67,7 @@ jobs:
6767
}
6868
6969
- name: Check Related Items
70-
uses: actions/github-script@v6
70+
uses: actions/github-script@v7
7171
with:
7272
script: |
7373
const issue = context.payload.issue || context.payload.pull_request;

.github/workflows/ai-validation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
# Generate Report
116116
- name: Generate Validation Report
117117
if: always()
118-
uses: actions/github-script@v6
118+
uses: actions/github-script@v7
119119
with:
120120
script: |
121121
const fs = require('fs');
@@ -172,7 +172,7 @@ jobs:
172172
# Notify on Failure
173173
- name: Notify on Validation Failure
174174
if: failure()
175-
uses: actions/github-script@v6
175+
uses: actions/github-script@v7
176176
with:
177177
script: |
178178
const message = `❌ AI Model validation failed on ${{ matrix.os }}!

.github/workflows/backport.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Extract backport branches
3333
id: extract-branches
34-
uses: actions/github-script@v6
34+
uses: actions/github-script@v7
3535
with:
3636
script: |
3737
const labels = context.payload.pull_request ?
@@ -51,7 +51,7 @@ jobs:
5151
5252
- name: Create backport PRs
5353
if: steps.extract-branches.outputs.result != '[]'
54-
uses: actions/github-script@v6
54+
uses: actions/github-script@v7
5555
with:
5656
script: |
5757
const branches = ${{ steps.extract-branches.outputs.result }};
@@ -119,7 +119,7 @@ jobs:
119119
120120
- name: Notify success
121121
if: success()
122-
uses: actions/github-script@v6
122+
uses: actions/github-script@v7
123123
with:
124124
script: |
125125
const prNumber = context.payload.pull_request ?

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
python benchmarks/load_test.py --duration 300 --users 100 > load_test_report.txt
5454
5555
- name: Process Benchmark Results
56-
uses: actions/github-script@v6
56+
uses: actions/github-script@v7
5757
with:
5858
script: |
5959
const fs = require('fs');

.github/workflows/branch_maintenance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
echo "\`\`\`" >> branch_report.md
6767
6868
- name: Create Issue with Branch Report
69-
uses: actions/github-script@v6
69+
uses: actions/github-script@v7
7070
with:
7171
script: |
7272
const fs = require('fs');

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ jobs:
196196
steps:
197197
- name: Notify on success
198198
if: success()
199-
uses: actions/github-script@v6
199+
uses: actions/github-script@v7
200200
with:
201201
script: |
202202
const message = "✅ CI/CD pipeline completed successfully!";
@@ -209,7 +209,7 @@ jobs:
209209
210210
- name: Notify on failure
211211
if: failure()
212-
uses: actions/github-script@v6
212+
uses: actions/github-script@v7
213213
with:
214214
script: |
215215
const message = "❌ CI/CD pipeline failed. Please check the logs for details.";

.github/workflows/commit_cycle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696

9797
- name: Notify on Success
9898
if: success()
99-
uses: actions/github-script@v6
99+
uses: actions/github-script@v7
100100
with:
101101
script: |
102102
github.rest.issues.createComment({
@@ -110,7 +110,7 @@ jobs:
110110

111111
- name: Notify on Failure
112112
if: failure()
113-
uses: actions/github-script@v6
113+
uses: actions/github-script@v7
114114
with:
115115
script: |
116116
github.rest.issues.createComment({

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
- name: Stale Report
4949
if: always()
50-
uses: actions/github-script@v6
50+
uses: actions/github-script@v7
5151
with:
5252
script: |
5353
const stats = process.env.STALE_STATISTICS;

0 commit comments

Comments
 (0)