ci: bump actions/checkout from 4 to 7 #10
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |