name: linkcheck
on:
push:
pull_request:
jobs:
check_links:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v5
- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@v2
with:
args: --base . --verbose --no-progress "*.md" "*.qmd"
fail: false
failed run
error: invalid value '.' for '--base <BASE>': Error with base dir `.` : Base must either be a URL (with scheme) or an absolute local path. See `--help` for more information. If you want to resolve root-relative links in local files, also see `--root-dir`.
I have also tried changing --base to --base-url and it's the same (failed run). This used to work fine until the end of Oct 2025 (working run). What has changed?
failed run
I have also tried changing
--baseto--base-urland it's the same (failed run). This used to work fine until the end of Oct 2025 (working run). What has changed?