Skip to content

Commit fa2f7f4

Browse files
ci(deps)(deps): bump actions/github-script from 8 to 9
Bumps [actions/github-script](https://github.com/actions/github-script) from 8 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v8...v9) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 4202ccc commit fa2f7f4

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/coding-agent.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
if: >-
4646
github.event_name == 'pull_request' &&
4747
steps.simulate.outcome == 'success'
48-
uses: actions/github-script@v8
48+
uses: actions/github-script@v9
4949
with:
5050
script: |
5151
// NOTE: If user-controlled data (e.g., PR titles or bodies)

.github/workflows/coherence-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Check for manual override
1717
id: check_override
18-
uses: actions/github-script@v8
18+
uses: actions/github-script@v9
1919
with:
2020
script: |
2121
const prNumber = context.payload.pull_request.number;
@@ -111,7 +111,7 @@ jobs:
111111
112112
- name: Apply coherence label
113113
if: steps.check_override.outputs.skip != 'true'
114-
uses: actions/github-script@v8
114+
uses: actions/github-script@v9
115115
with:
116116
script: |
117117
const score = parseInt('${{ steps.coherence.outputs.score }}') || 0;
@@ -154,7 +154,7 @@ jobs:
154154
155155
- name: Comment on PR
156156
if: steps.check_override.outputs.skip != 'true' && steps.coherence.outputs.exit_code != '0'
157-
uses: actions/github-script@v8
157+
uses: actions/github-script@v9
158158
with:
159159
script: |
160160
const score = '${{ steps.coherence.outputs.score }}';

.github/workflows/snap-in-synchronization.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
143143
- name: Annotate snap-in on PR
144144
if: github.event_name == 'pull_request' && steps.snap_detection.outputs.snap_in == 'true'
145-
uses: actions/github-script@v8
145+
uses: actions/github-script@v9
146146
with:
147147
script: |
148148
const rawResult = `${{ steps.snap_detection.outputs.result }}`;
@@ -212,7 +212,7 @@ jobs:
212212
213213
- name: Apply snap-in labels
214214
if: steps.snap_detection.outputs.snap_in == 'true' && github.event_name == 'pull_request'
215-
uses: actions/github-script@v8
215+
uses: actions/github-script@v9
216216
with:
217217
script: |
218218
const prNumber = context.payload.pull_request.number;

0 commit comments

Comments
 (0)