Skip to content

Commit

Permalink
Adds missing regex managers
Browse files Browse the repository at this point in the history
  • Loading branch information
ubiratansoares committed May 20, 2024
1 parent ddeea09 commit cc14197
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
30 changes: 30 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,36 @@
"matchStrings": [
"readonly\\s*shellcheck=\"koalaman/shellcheck-alpine:v(?<currentValue>\\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(?<currentValue>\\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(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)\""
]
},
{
"customType": "regex",
"depNameTemplate": "lychee",
"packageNameTemplate": "lycheeverse/lychee",
"datasourceTemplate": "docker",
"fileMatch": ["(^|/)markdown-linter\\.sh$"],
"matchStrings": [
"readonly\\s*lychee=\"lycheeverse/lychee:(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)\""
]
}
]
}
2 changes: 1 addition & 1 deletion quality/markdown/markdown-linter.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cc14197

Please sign in to comment.