From 7e31b0ec9d3e45b637019c6760a523b4d6e2c917 Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Thu, 19 Feb 2026 12:01:25 +0000 Subject: [PATCH 1/3] ci: fix Lychee workflow --- .github/workflows/link_check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/link_check.yml b/.github/workflows/link_check.yml index 177ae81..8d36945 100644 --- a/.github/workflows/link_check.yml +++ b/.github/workflows/link_check.yml @@ -11,10 +11,10 @@ jobs: linkChecker: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Restore lychee cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .lycheecache key: cache-lychee-${{ github.sha }} @@ -24,4 +24,4 @@ jobs: uses: lycheeverse/lychee-action@v2 with: jobSummary: true - args: --base . --cache --max-cache-age 1d --config .github/workflows/lychee.toml './**/*.md' + args: --cache --max-cache-age 1d --config .github/workflows/lychee.toml './**/*.md' From bf3b2f5c48e278d8d6cce13915cd82d66880ed77 Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Thu, 19 Feb 2026 12:05:21 +0000 Subject: [PATCH 2/3] ci: add `--base-url` flag --- .github/workflows/link_check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/link_check.yml b/.github/workflows/link_check.yml index 8d36945..995bda3 100644 --- a/.github/workflows/link_check.yml +++ b/.github/workflows/link_check.yml @@ -24,4 +24,4 @@ jobs: uses: lycheeverse/lychee-action@v2 with: jobSummary: true - args: --cache --max-cache-age 1d --config .github/workflows/lychee.toml './**/*.md' + args: --base-url https://pestphp.test --cache --max-cache-age 1d --config .github/workflows/lychee.toml './**/*.md' From 1621a980511dc3c6f61e85289a114f161bb37611 Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Thu, 19 Feb 2026 12:06:33 +0000 Subject: [PATCH 3/3] ci: use absolute path --- .github/workflows/link_check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/link_check.yml b/.github/workflows/link_check.yml index 995bda3..a5c3a50 100644 --- a/.github/workflows/link_check.yml +++ b/.github/workflows/link_check.yml @@ -24,4 +24,4 @@ jobs: uses: lycheeverse/lychee-action@v2 with: jobSummary: true - args: --base-url https://pestphp.test --cache --max-cache-age 1d --config .github/workflows/lychee.toml './**/*.md' + args: --base-url "$(pwd)" --cache --max-cache-age 1d --config .github/workflows/lychee.toml './**/*.md'