Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v5

- name: Validate Renovate config
run: |
docker run --rm -v "$PWD:/repo" -w /repo \
ghcr.io/renovatebot/renovate:41 \
renovate-config-validator renovate-shared-config.json

- name: Self-hosted Renovate
uses: renovatebot/github-action@v43.0.10
env:
Expand Down
5 changes: 3 additions & 2 deletions renovate-shared-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
// where you don't want to burn CI credits, while still keeping your branch
// in a mergeable state at all times.
"rebaseWhen": "conflicted",
"regexManagers": [
"customManagers": [
{
"customType": "regex",
"fileMatch": ["(^|/)Containerfile$", "(^|/)Dockerfile$"],
"matchStrings": [
"# renovate: datasource=(?<datasource>[a-z-]+) depName=(?<depName>[^\\s]+)\\s+ARG \\w+version=(?<currentValue>.+)"
Expand Down Expand Up @@ -47,7 +48,7 @@
"description": "Docker dependencies",
"matchManagers": [
"dockerfile",
"regex"
"custom.regex"
],
"groupName": "Docker",
"enabled": true
Expand Down