Skip to content

Commit 3f929d7

Browse files
authored
Merge pull request #7801 from dhaiducek/fix-link-check-2.13
[2.13_stage] Limit link check concurrency
2 parents 6bfb9a3 + 22a7ea2 commit 3f929d7

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

.github/workflows/linting.yml

+18-1
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,25 @@ jobs:
2020
run: |
2121
find . -name \*.adoc -exec asciidoctor --failure-level WARN --trace --verbose --warnings {} +
2222
23+
- name: Restore lychee cache
24+
uses: actions/cache@v4
25+
with:
26+
path: .lycheecache
27+
key: cache-lychee-${{ github.sha }}
28+
restore-keys: cache-lychee-
29+
2330
- name: Link Check
2431
uses: lycheeverse/lychee-action@1d97d84f0bc547f7b25f4c2170d87d810dc2fb2c
2532
with:
26-
args: --no-progress --timeout 30 --scheme http --scheme https --require-https "./**/main.html"
33+
args: >-
34+
--cache
35+
--max-cache-age 3d
36+
--no-progress
37+
--max-concurrency 20
38+
--timeout 30
39+
--retry-wait-time 60
40+
--scheme http
41+
--scheme https
42+
--require-https
43+
"./**/main.html"
2744
fail: true

observability/observability_alerts.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ route:
6161
receiver: team-X-mails
6262
----
6363

64-
Your changes are applied immediately after it is modified. For an example of Alertmanager, see link:https://github.com/prometheus/alertmanager/blob/master/doc/examples/simple.yml[prometheus/alertmanager].
64+
Your changes are applied immediately after it is modified. For an example of Alertmanager, see link:https://github.com/prometheus/alertmanager/blob/main/doc/examples/simple.yml[prometheus/alertmanager].
6565

6666
[#mount-secrets-alertmanager]
6767
=== Mounting secrets within the Alertmanager pods

0 commit comments

Comments
 (0)