Skip to content

Commit 313acc4

Browse files
committed
fix(links): update lychee caching
1 parent 572d927 commit 313acc4

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-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: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
base_url = "https://dev.flare.network/"
2+
user_agent = "curl/8.7.1"
23
verbose = "info"
34
no_progress = true
45
cache = true
56
max_cache_age = "2d"
6-
cache_exclude_status = "403, 429, 500.."
7-
timeout = 20
7+
cache_exclude_status = "..100, 403, 429, 500.."
8+
timeout = 30
89
retry_wait_time = 2
9-
max_retries = 2
10+
max_retries = 3
1011
max_concurrency = 8
1112
accept = ["200..=399", "429"]
1213
exclude_all_private = true
@@ -24,5 +25,5 @@ exclude = [
2425
'^https://discord\.com/',
2526
'^https://docs\.eigencloud\.xyz/',
2627
'^https://coston2\.testnet\.flarescan\.com/',
27-
'^https://jq-verifier-test.flare.rocks',
28+
'^https://jq-verifier-test\.flare\.rocks',
2829
]

0 commit comments

Comments
 (0)