Pin lychee link checker version (#2090)
Co-authored-by: Joao Grassi <5938087+joaopgrassi@users.noreply.github.com>
This commit is contained in:
parent
388f7eb9c1
commit
8e60862e0b
|
|
@ -8,11 +8,15 @@ exclude = [
|
||||||
"^https://github.com/open-telemetry/semantic-conventions/(pull|issues)/\\d+$",
|
"^https://github.com/open-telemetry/semantic-conventions/(pull|issues)/\\d+$",
|
||||||
"^https://github.com/open-telemetry/opentelemetry-specification/(pull|issues)/\\d+$",
|
"^https://github.com/open-telemetry/opentelemetry-specification/(pull|issues)/\\d+$",
|
||||||
# TODO (lmolkova) treat timeout as not a failure?
|
# TODO (lmolkova) treat timeout as not a failure?
|
||||||
"^https://www.intersystems.com"
|
"^https://www.intersystems.com",
|
||||||
|
"^https://gcc.gnu.org"
|
||||||
]
|
]
|
||||||
|
|
||||||
# better to be safe and avoid failures
|
# better to be safe and avoid failures
|
||||||
max_retries = 6
|
max_retries = 6
|
||||||
|
|
||||||
|
# better to be safe and avoid failures
|
||||||
|
timeout = 60
|
||||||
|
|
||||||
# insecure is currently needed for https://osi-model.com
|
# insecure is currently needed for https://osi-model.com
|
||||||
insecure = true
|
insecure = true
|
||||||
|
|
|
||||||
6
Makefile
6
Makefile
|
|
@ -121,9 +121,10 @@ normalized-link-check:
|
||||||
|
|
||||||
.PHONY: markdown-link-check
|
.PHONY: markdown-link-check
|
||||||
markdown-link-check: normalized-link-check
|
markdown-link-check: normalized-link-check
|
||||||
|
# pinning lychee to 0.18.1
|
||||||
$(DOCKER_RUN) --rm \
|
$(DOCKER_RUN) --rm \
|
||||||
--mount 'type=bind,source=$(PWD),target=/home/repo' \
|
--mount 'type=bind,source=$(PWD),target=/home/repo' \
|
||||||
lycheeverse/lychee \
|
lycheeverse/lychee:sha-2aa22f8 \
|
||||||
--config home/repo/.lychee.toml \
|
--config home/repo/.lychee.toml \
|
||||||
--root-dir /home/repo \
|
--root-dir /home/repo \
|
||||||
--verbose \
|
--verbose \
|
||||||
|
|
@ -132,9 +133,10 @@ markdown-link-check: normalized-link-check
|
||||||
|
|
||||||
.PHONY: markdown-link-check-changelog-preview
|
.PHONY: markdown-link-check-changelog-preview
|
||||||
markdown-link-check-changelog-preview:
|
markdown-link-check-changelog-preview:
|
||||||
|
# pinning lychee to 0.18.1
|
||||||
$(DOCKER_RUN) --rm \
|
$(DOCKER_RUN) --rm \
|
||||||
--mount 'type=bind,source=$(PWD),target=/home/repo' \
|
--mount 'type=bind,source=$(PWD),target=/home/repo' \
|
||||||
lycheeverse/lychee \
|
lycheeverse/lychee:sha-2aa22f8 \
|
||||||
--config /home/repo/.lychee.toml \
|
--config /home/repo/.lychee.toml \
|
||||||
--root-dir /home/repo \
|
--root-dir /home/repo \
|
||||||
--verbose \
|
--verbose \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue