build(deps): Bump actions/setup-dotnet from 5.0.0 to 5.0.1 #173
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: 'Check Markdown links' | |
| on: | |
| workflow_dispatch: | |
| # Schedule to run every week on Sunday at 00:00 UTC | |
| schedule: | |
| - cron: '0 0 * * 0' | |
| pull_request: | |
| types: [opened, reopened, edited, synchronize] | |
| branches: | |
| - main | |
| jobs: | |
| markdown-link-check: | |
| name: "Markdown link check" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/[email protected] | |
| - name: 'Readme analysis' | |
| uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
| with: | |
| use-verbose-mode: 'yes' | |
| base-branch: 'main' | |
| config-file: '.github/workflows/markdown-link-check.json' |