From 90fe8454c317c3671a44977768ab05620e4a05b3 Mon Sep 17 00:00:00 2001 From: Romain Ruetschi <106849+romac@users.noreply.github.com> Date: Wed, 30 Aug 2023 21:23:24 +0200 Subject: [PATCH] Use lychee to check markdown links --- .github/workflows/markdown-link-check.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/markdown-link-check.yml b/.github/workflows/markdown-link-check.yml index ae3b402566..5d1bb365d0 100644 --- a/.github/workflows/markdown-link-check.yml +++ b/.github/workflows/markdown-link-check.yml @@ -11,9 +11,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: markdown-link-check - uses: gaurav-nelson/github-action-markdown-link-check@v1 + - name: Link Checker + id: lychee + uses: lycheeverse/lychee-action@v1.8.0 with: - config-file: '.github/markdown-link-check.json' - use-quiet-mode: 'yes' - use-verbose-mode: 'yes' + args: --verbose --no-progress './**/*.md'