From 589a4b701965c50ede035f4eb255acaa546a059d Mon Sep 17 00:00:00 2001 From: Anton Gilgur <4970083+agilgur5@users.noreply.github.com> Date: Mon, 24 Jul 2023 16:52:36 -0400 Subject: [PATCH] build: pin versions of NPM global deps in `Makefile` (#11425) --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a432825d5f41..5bb0016a343c 100644 --- a/Makefile +++ b/Makefile @@ -626,7 +626,7 @@ docs/cli/argo.md: $(CLI_PKGS) go.sum server/static/files.go hack/cli/main.go # docs /usr/local/bin/mdspell: - npm i -g markdown-spellcheck # update this in Nix when upgrading it here + npm i -g markdown-spellcheck@1.3.1 # update this in Nix when upgrading it here .PHONY: docs-spellcheck @@ -635,7 +635,7 @@ docs-spellcheck: /usr/local/bin/mdspell mdspell --ignore-numbers --ignore-acronyms --en-us --no-suggestions --report $(shell find docs -name '*.md' -not -name upgrading.md -not -name README.md -not -name fields.md -not -name upgrading.md -not -name swagger.md -not -name executor_swagger.md -not -path '*/cli/*') /usr/local/bin/markdown-link-check: - npm i -g markdown-link-check # update this in Nix when upgrading it here + npm i -g markdown-link-check@3.11.1 # update this in Nix when upgrading it here .PHONY: docs-linkcheck @@ -644,7 +644,7 @@ docs-linkcheck: /usr/local/bin/markdown-link-check markdown-link-check -q -c .mlc_config.json $(shell find docs -name '*.md' -not -name fields.md -not -name swagger.md -not -name executor_swagger.md) /usr/local/bin/markdownlint: - npm i -g markdownlint-cli # update this in Nix when upgrading it here + npm i -g markdownlint-cli@0.33.0 # update this in Nix when upgrading it here .PHONY: docs-lint