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
2 changes: 1 addition & 1 deletion .github/workflows/coding-agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
if: >-
github.event_name == 'pull_request' &&
steps.simulate.outcome == 'success'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
// NOTE: If user-controlled data (e.g., PR titles or bodies)
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/coherence-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- name: Check for manual override
id: check_override
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const prNumber = context.payload.pull_request.number;
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:

- name: Apply coherence label
if: steps.check_override.outputs.skip != 'true'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const score = parseInt('${{ steps.coherence.outputs.score }}') || 0;
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:

- name: Comment on PR
if: steps.check_override.outputs.skip != 'true' && steps.coherence.outputs.exit_code != '0'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const score = '${{ steps.coherence.outputs.score }}';
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/snap-in-synchronization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:

- name: Annotate snap-in on PR
if: github.event_name == 'pull_request' && steps.snap_detection.outputs.snap_in == 'true'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const rawResult = `${{ steps.snap_detection.outputs.result }}`;
Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:

- name: Apply snap-in labels
if: steps.snap_detection.outputs.snap_in == 'true' && github.event_name == 'pull_request'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const prNumber = context.payload.pull_request.number;
Expand Down
Loading