Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:

- name: 3) Comment on PR if links broken
if: failure() && github.event_name == 'pull_request' && env.REPORT_FAILURES == 'true'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const runUrl = `${context.payload.repository.html_url}/actions/runs/${context.runId}`;
Expand All @@ -80,7 +80,7 @@ jobs:
# WHY: Track broken links found during scheduled checks
# OBS: Only creates issue if no open issue from github-actions bot exists
if: failure() && github.event_name == 'schedule' && env.REPORT_FAILURES == 'true'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const owner = context.repo.owner;
Expand Down
Loading