Skip to content

Commit 399e80e

Browse files
committedMay 16, 2023
Sync check-markdown-task with upstream template
1 parent eb01e48 commit 399e80e

File tree

4 files changed

+174
-285
lines changed

4 files changed

+174
-285
lines changed
 

‎.github/workflows/check-markdown-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
RESULT="false"
6161
fi
6262
63-
echo "::set-output name=result::$RESULT"
63+
echo "result=$RESULT" >> $GITHUB_OUTPUT
6464
6565
lint:
6666
needs: run-determination

‎Taskfile.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,8 @@ tasks:
176176
# npx --call uses the native shell, which makes it too difficult to use npx for this application on Windows,
177177
# so the Windows user is required to have markdown-link-check installed and in PATH.
178178
if ! which markdown-link-check &>/dev/null; then
179-
echo "markdown-link-check not found or not in PATH. Please install: https://github.com/tcort/markdown-link-check#readme"
179+
echo "markdown-link-check not found or not in PATH."
180+
echo "Please install: https://github.com/tcort/markdown-link-check#readme"
180181
exit 1
181182
fi
182183
# Default behavior of the task on Windows is to exit the task when the first broken link causes a non-zero

‎package-lock.json

Lines changed: 169 additions & 281 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"devDependencies": {
33
"ajv-cli": "^5.0.0",
44
"ajv-formats": "^2.1.1",
5-
"markdown-link-check": "^3.10.2",
6-
"markdownlint-cli": "^0.32.1"
5+
"markdown-link-check": "^3.11.2",
6+
"markdownlint-cli": "^0.33.0"
77
}
88
}

0 commit comments

Comments
 (0)
Please sign in to comment.