Skip to content

ci: bump actions/checkout from 4 to 7 #10

ci: bump actions/checkout from 4 to 7

ci: bump actions/checkout from 4 to 7 #10

Workflow file for this run

name: CG Link Check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '30 9 * * 5'
permissions:
contents: read
jobs:
link-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Run lychee link checker
# Non-blocking: external links rot over time (moved docs, bot-blocking
# sites like Reddit/Azure portal) independent of any given PR's diff.
# Report findings without gating merges on inherited link drift.
continue-on-error: true
uses: lycheeverse/lychee-action@v2
with:
args: --verbose --no-progress '*.md' 'examples/*.md'
fail: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}