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/auto-progress-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: Extract progress updates from PR body
id: extract
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
// core is already available globally in github-script@v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog-daily-rollup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ jobs:

- name: Create GitHub issue for high conflict days
if: steps.conflicts.outputs.count > 2
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const date = '${{ steps.date.outputs.date }}';
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/conflict-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
if: |
github.event_name == 'pull_request' &&
steps.conflict_check.outputs.has_conflicts == 'true'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
// Add conflict label
Expand All @@ -119,7 +119,7 @@ jobs:
if: |
github.event_name == 'pull_request' &&
steps.conflict_check.outputs.has_conflicts == 'false'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
// Remove conflict label if present
Expand All @@ -140,7 +140,7 @@ jobs:
github.event_name == 'pull_request' &&
(steps.conflict_check.outputs.has_conflicts == 'true' ||
steps.overlap_check.outputs.has_overlaps == 'true')
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const hasConflicts = '${{ steps.conflict_check.outputs.has_conflicts }}' === 'true';
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-proof-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- name: Check PR body for proof lines
id: check
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const body = (context.payload.pull_request.body || "");
Expand All @@ -26,7 +26,7 @@ jobs:
# Comment & label if lines are missing
- name: Comment & label if missing
if: steps.check.outputs.missing != '[]'
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
MISSING: ${{ steps.check.outputs.missing }}
with:
Expand Down
Loading