From cc14197374381db432ad2795b089a2fb4a055912 Mon Sep 17 00:00:00 2001 From: Ubiratan Soares Date: Mon, 20 May 2024 20:34:10 +0200 Subject: [PATCH] Adds missing regex managers --- .github/renovate.json | 30 +++++++++++++++++++++++++++++ quality/markdown/markdown-linter.sh | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index b34814e..4dec991 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -34,6 +34,36 @@ "matchStrings": [ "readonly\\s*shellcheck=\"koalaman/shellcheck-alpine:v(?\\d+\\.\\d+(\\.\\d+)?)\"" ] + }, + { + "customType": "regex", + "depNameTemplate": "addlicense", + "packageNameTemplate": "google/addlicense", + "datasourceTemplate": "docker", + "fileMatch": ["(^|/)license-checker\\.sh$"], + "matchStrings": [ + "readonly\\s*addlicense=\"ghcr.io/google/addlicense:v(?\\d+\\.\\d+(\\.\\d+)?)\"" + ] + }, + { + "customType": "regex", + "depNameTemplate": "markdownlint-cli", + "packageNameTemplate": "igorshubovych/markdownlint-cli", + "datasourceTemplate": "docker", + "fileMatch": ["(^|/)markdown-linter\\.sh$"], + "matchStrings": [ + "readonly\\s*markdownlint=\"ghcr.io/igorshubovych/markdownlint-cli:v(?\\d+\\.\\d+(\\.\\d+)?)\"" + ] + }, + { + "customType": "regex", + "depNameTemplate": "lychee", + "packageNameTemplate": "lycheeverse/lychee", + "datasourceTemplate": "docker", + "fileMatch": ["(^|/)markdown-linter\\.sh$"], + "matchStrings": [ + "readonly\\s*lychee=\"lycheeverse/lychee:(?\\d+\\.\\d+(\\.\\d+)?)\"" + ] } ] } diff --git a/quality/markdown/markdown-linter.sh b/quality/markdown/markdown-linter.sh index 8d9c8d5..f7ba825 100755 --- a/quality/markdown/markdown-linter.sh +++ b/quality/markdown/markdown-linter.sh @@ -12,7 +12,7 @@ readonly target_folder="$1" readonly markdownlint="ghcr.io/igorshubovych/markdownlint-cli:v0.39.0" # https://hub.docker.com/r/lycheeverse/lychee/tags -readonly lychee="lycheeverse/lychee:0.14.3-alpine" +readonly lychee="lycheeverse/lychee:0.14.3" require_docker_daemon() { if (! docker stats --no-stream >/dev/null); then