deps: bump hf-hub from 0.5.0 to 1.0.0 #34
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: Link check | |
| on: | |
| schedule: | |
| # Weekly, Monday 07:23 UTC. Catches link rot from external URL changes | |
| # without spamming the action queue. | |
| - cron: '23 7 * * 1' | |
| pull_request: | |
| paths: | |
| - '**/*.md' | |
| - '.github/workflows/links.yml' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: links-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lychee: | |
| name: lychee | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: lycheeverse/lychee-action@e7477775783ea5526144ba13e8db5eec57747ce8 # v2.9.0 | |
| with: | |
| # Scan all markdown in the repo. fail: true exits non-zero on any | |
| # broken link, surfacing the failure as a check rejection. | |
| args: --verbose --no-progress './**/*.md' | |
| fail: true | |
| env: | |
| # GitHub-hosted URLs hit secondary rate limits anonymously. | |
| # The default GITHUB_TOKEN is enough to lift the limit. | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |