Bump Meziantou.Analyzer from 2.0.157 to 2.0.158 in /MarkdownLinkCheckLogParser in the nuget group #613
Workflow file for this run
This file contains 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: Markdown Link Check without errors | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
branches: [ main ] | |
schedule: | |
- cron: '0 0 * * 0' # Once a week: "At 00:00 on Sunday." | |
defaults: | |
run: | |
shell: pwsh | |
jobs: | |
main: | |
name: Run Markdown Link Check | |
permissions: | |
contents: read | |
runs-on: ubuntu-latest | |
steps: | |
- name: Dump github context for debug purposes | |
env: | |
GITHUB_CONTEXT: ${{ toJSON(github) }} | |
run: $env:GITHUB_CONTEXT | |
- uses: actions/checkout@v4 | |
- name: Markdown Link Check | |
continue-on-error: true | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
config-file: .github/markdown-link-check-config.json | |
folder-path: .github/workflows/markdown-link-check-files/without-errors/ | |
use-quiet-mode: no |