Skip to content

Commit

Permalink
Adds more regex managers to Renovate setup (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
ubiratansoares authored May 20, 2024
1 parent 4f32d2f commit 2c49620
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,17 @@
"datasourceTemplate": "docker",
"fileMatch": ["(^|/)bash-linter\\.sh$"],
"matchStrings": [
"readonly\\s*shmft=\"mvdan/shfmt:v(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)-alpine\""
"readonly\\s*shmft=\"mvdan/shfmt:v(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)\""
]
},
{
"customType": "regex",
"depNameTemplate": "shellcheck",
"packageNameTemplate": "koalaman/shellcheck",
"datasourceTemplate": "docker",
"fileMatch": ["(^|/)bash-linter\\.sh$"],
"matchStrings": [
"readonly\\s*shellcheck=\"koalaman/shellcheck:v(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)\""
]
}
]
Expand Down
2 changes: 1 addition & 1 deletion quality/bash/bash-linter.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
set -eo pipefail

# https://hub.docker.com/r/mvdan/shfmt/tags
readonly shmft="mvdan/shfmt:v3.7.0-alpine"
readonly shmft="mvdan/shfmt:v3.7.0"

# https://hub.docker.com/r/koalaman/shellcheck-alpine/tags
readonly shellcheck="koalaman/shellcheck-alpine:v0.10.0"
Expand Down

0 comments on commit 2c49620

Please sign in to comment.