Validate and update links (STF-557)#102
Merged
Merged
Conversation
Modver resultThis report was generated by Modver, This PR does not require a change in your module’s version number. |
|
Warning You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again! |
Adds a lychee configuration and a Links GitHub Actions workflow so that stale or redirecting links are caught automatically going forward. The checker runs on push, pull request, and weekly to catch external link rot. max_redirects is 0 so links that have moved are surfaced and can be updated to their canonical destination. lychee is installed via mise (pinned to 0.23.0 in mise.toml/mise.lock) and run via the check-links task, both locally and in CI. Part of STF-557. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Validated all links with lychee and updated the one that redirected: - README.md GoDoc badge: godoc.org/github.com/maxmind/xgbshap?status.png (301 -> pkg.go.dev) replaced with the canonical pkg.go.dev badge https://pkg.go.dev/badge/github.com/maxmind/xgbshap.svg Part of STF-557. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Resolves zizmor ref-version-mismatch warnings on hash-pinned actions whose version comments omitted the leading v (the pinned commits already match the corresponding vX.Y.Z tags). Comment-only change. Part of STF-557. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
horgh
approved these changes
Jun 5, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a lychee link checker (config + Links GitHub Actions workflow) and fixes the one stale/redirecting link found in the repo.
Tooling
lychee.toml:max_redirects = 0(surfaces moved links) and the standard MaxMind accept list (incl.500..=599). Go globs'./**/*.md' './**/*.go'; excludes(^|/)vendor/and(^|/)CHANGELOG.md$.0.23.0inmise.tomland locked across all platforms inmise.lock; run via thecheck-linksmise task locally and in CI..github/workflows/links.yml: mise-based workflow (install: false+MISE_AUTO_INSTALL: false) so only lychee is installed in CI, on push/PR/weekly/manual..lycheecacheadded to.gitignore.Links changed (old -> new)
https://godoc.org/github.com/maxmind/xgbshap?status.png(301 redirect) ->https://pkg.go.dev/badge/github.com/maxmind/xgbshap.svgFinal lychee run: 6 total, 5 OK, 0 errors, 1 excluded.
Part of STF-557.
🤖 Generated with Claude Code