Skip to content

Commit 728648a

Browse files
authored
fix(links): update lychee caching (#1222)
1 parent 572d927 commit 728648a

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

.github/workflows/check-external-links.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ jobs:
2020
uses: actions/cache@v5
2121
with:
2222
path: .lycheecache
23-
key: cache-lychee-${{ hashFiles('lychee.toml') }}
24-
restore-keys: cache-lychee-
23+
key: cache-lychee-${{ runner.os }}-${{ github.sha }}
24+
restore-keys: |
25+
cache-lychee-${{ runner.os }}-
26+
2527
- name: Link Checker
2628
id: lychee
2729
uses: lycheeverse/lychee-action@v2

docs/network/0-overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ Discover suitable options for your needs on the [Flare Wallets](https://flare.ne
380380
Integrating Flare is similar to integrating Ethereum or other EVM chains.
381381
To add it to your exchange set up an [RPC node](/run-node#rpc-node) and use the appropriate [network configuration](#configuration) for Flare Mainnet.
382382

383-
Additional resources: [Flare Brand Kit](https://flare.network/media/), [go-flare source code](https://github.com/flare-foundation/go-flare)
383+
Additional resources: [Flare Brand Kit](https://flare.network/media), [go-flare source code](https://github.com/flare-foundation/go-flare)
384384

385385
:::
386386

docusaurus.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ const config: Config = {
154154
},
155155
{
156156
label: "Brand Kit",
157-
href: "https://drive.google.com/drive/u/1/folders/1mPrtIBb2k88E4f1fguEm3eAXLW74xOry",
157+
href: "https://flare.network/media",
158158
},
159159
{
160160
label: "Terms & Conditions",

lychee.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ verbose = "info"
33
no_progress = true
44
cache = true
55
max_cache_age = "2d"
6-
cache_exclude_status = "403, 429, 500.."
7-
timeout = 20
6+
cache_exclude_status = ["403", "429", "500.."]
7+
timeout = 30
88
retry_wait_time = 2
9-
max_retries = 2
9+
max_retries = 3
1010
max_concurrency = 8
1111
accept = ["200..=399", "429"]
1212
exclude_all_private = true
@@ -24,5 +24,5 @@ exclude = [
2424
'^https://discord\.com/',
2525
'^https://docs\.eigencloud\.xyz/',
2626
'^https://coston2\.testnet\.flarescan\.com/',
27-
'^https://jq-verifier-test.flare.rocks',
27+
'^https://jq-verifier-test\.flare\.rocks',
2828
]

0 commit comments

Comments
 (0)