File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed
Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ SHELL := /bin/bash
33.DEFAULT_GOAL := all
44
55# renovate: datasource=docker depName=ghcr.io/igorshubovych/markdownlint-cli versioning=docker
6- MARKDOWNLINT_VERSION = v0.47 .0
6+ MARKDOWNLINT_VERSION = sha256:b771097d3d9ec6b368fefcea5f0c05c8710293d9251fca17e31c8e10987b50ef # v0.46 .0
77
88.PHONY : all
99all : # # build pipeline
@@ -26,7 +26,7 @@ mdlint: ## markdownlint
2626ifneq ($(filter 1 true,$(SKIP_DOCKER ) ) ,)
2727 @echo "Skipping $(@) per SKIP_DOCKER=$(SKIP_DOCKER)"
2828else
29- docker run --rm -v "$(PWD):/workdir" ghcr.io/igorshubovych/markdownlint-cli: $(MARKDOWNLINT_VERSION) "**/*.md"
29+ docker run --rm -v "$(PWD):/workdir" ghcr.io/igorshubovych/markdownlint-cli@ $(MARKDOWNLINT_VERSION) "**/*.md"
3030endif
3131
3232.PHONY : clean
Original file line number Diff line number Diff line change 66 ],
77 "postUpdateOptions" : [
88 " gomodTidy"
9- ]
9+ ],
10+ "customManagers" : [
11+ {
12+ "customType" : " regex" ,
13+ "managerFilePatterns" : [
14+ " /(^|/)Makefile$/" ,
15+ " /(^|/)makefile$/" ,
16+ " /(^|/)GNUMakefile$/" ,
17+ " /\\ .mk$/"
18+ ],
19+ "matchStrings" : [
20+ " # renovate: datasource=(?<datasource>[a-zA-Z0-9-._]+?) depName=(?<depName>[^\\ s]+?)(?: (?:packageName)=(?<packageName>[^\\ s]+?))?(?: versioning=(?<versioning>[^\\ s]+?))?(?: extractVersion=(?<extractVersion>[^\\ s]+?))?(?: registryUrl=(?<registryUrl>[^\\ s]+?))?\\ s+[A-Za-z0-9_]+?_VERSION\\ s*:*\\ ??=\\ s*[\" ']?(?<currentDigest>.+?)[\" ']?\\ s+#\\ s+(?<currentValue>.+?)\\ s"
21+ ]
22+ }
23+ ]
1024}
You can’t perform that action at this time.
0 commit comments