Skip to content

Commit 97b1082

Browse files
committed
Changed markdownlint image
1 parent f6eec27 commit 97b1082

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Taskfile.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,12 @@ tasks:
3737
# We use a block scalar (https://yaml-multiline.info/#block-scalars) here to make escaping (a little) easier.
3838
GLOB: >-
3939
{{.CLI_ARGS | default "'**/*.md'"}}
40+
# I don't (yet) know why, but `itkdev/markdownlint` has an issue with
41+
# permissions when running in GitHub Actions. Therefore we use
42+
# `peterdavehello/markdownlint`
43+
# (https://hub.docker.com/r/peterdavehello/markdownlint)
4044
MARKDOWNLINT_COMMAND: >-
41-
docker run --rm --volume "$PWD":/md itkdev/markdownlint markdownlint --dot {{.GLOB}}
45+
docker run --rm --volume "$PWD":/md peterdavehello/markdownlint markdownlint --dot {{.GLOB}}
4246
4347
lint:shell-script:
4448
desc: "Lint shell scripts"

0 commit comments

Comments
 (0)