From af6531cc9f1e98f030270f63ceccede01d8526fc Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Fri, 17 Oct 2025 14:53:29 +0200 Subject: [PATCH 1/2] ci: fix markdown-link-check --- .github/workflows/markdown-link-check.yml | 2 +- markdown_link_check_config.json | 15 ++++++++------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/markdown-link-check.yml b/.github/workflows/markdown-link-check.yml index 88050bf611..a41ac716d1 100644 --- a/.github/workflows/markdown-link-check.yml +++ b/.github/workflows/markdown-link-check.yml @@ -18,6 +18,6 @@ jobs: with: node-version: 'lts/*' - name: Install markdown-link-check - run: npm i -g markdown-link-check@3.11.0 + run: npm i -g markdown-link-check@3.14.1 - name: Run markdown-link-check on MD files run: find . -name "*.md" | xargs -n 1 markdown-link-check -c markdown_link_check_config.json -q diff --git a/markdown_link_check_config.json b/markdown_link_check_config.json index 1b8b1d40f6..ee9cafc89f 100644 --- a/markdown_link_check_config.json +++ b/markdown_link_check_config.json @@ -1,12 +1,13 @@ { - "httpHeaders": [ + "ignorePatterns": [ { - "urls": [ - "https://docs.github.com" - ], - "headers": { - "Accept-Encoding": "br, gzip, deflate" - } + "pattern": "^https://nodejs\\.org/" + }, + { + "pattern": "^https://www\\.npmjs\\.com/" + }, + { + "pattern": "^https://news\\.ycombinator\\.com/" } ] } From 739ef44f26bb0ebd2d27e77bbc465b98d0c70463 Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Sat, 18 Oct 2025 10:21:14 +0200 Subject: [PATCH 2/2] change http://nodejs.org to https://nodejs.org --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dfaf1abb46..2e6cc934a7 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ fast, scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices. -See: http://nodejs.org +See: https://nodejs.org ## How to use this image