Skip to content
Open
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 @@ -55,7 +55,7 @@ jobs:
# WHY: Provide helpful feedback on PRs with broken links
- name: Comment on PR if links broken
if: failure() && github.event_name == 'pull_request'
uses: actions/github-script@v8 # OBS: v8 current as of Dec 2025
uses: actions/github-script@v9 # OBS: v8 current as of Dec 2025
with:
script: |
const comment = `## Link Check Results
Expand All @@ -73,7 +73,7 @@ jobs:
# OBS: Only creates issue if none already open with 'broken-links' label
- name: Create issue for scheduled failures
if: failure() && github.event_name == 'schedule'
uses: actions/github-script@v8 # OBS: v8 current as of Dec 2025
uses: actions/github-script@v9 # OBS: v8 current as of Dec 2025
with:
script: |
const title = `Link Check Failed - ${new Date().toISOString().split('T')[0]}`;
Expand Down