chore: improve renovate dependency detection
Docker Build and Push / lint (pull_request) Successful in 9s
Docker Build and Push / build (pull_request) Failing after 1m27s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped

- Add renovate.json with custom regexManagers for:
  - Quoted FROM images (debian:buster)
  - SABNZBD_VERSION, TINI_VERSION, PAR2CMDLINE_VERSION env pins
- Disable gitlabci manager (legacy CI, migrated to Gitea Actions)
- Remove unnecessary quotes from FROM image reference
This commit is contained in:
2026-06-09 02:15:40 +00:00
parent 7ca58ebb9e
commit 1319d1d3c2
2 changed files with 48 additions and 1 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
FROM "debian:buster"
FROM debian:buster
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
RUN groupadd -r -g 666 sabnzbd && \
+47
View File
@@ -0,0 +1,47 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"gitlabci": {
"enabled": false
},
"customManagers": [
{
"customType": "regex",
"description": "Detect FROM images with optional quotes",
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"FROM\\s+\"?(?<depName>[^\":\\s]+):(?<currentValue>[^\"\\s]+)\"?"
],
"datasourceTemplate": "docker"
},
{
"customType": "regex",
"description": "Detect SABnzbd release version pin",
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"SABNZBD_VERSION=(?<currentValue>[0-9.]+)"
],
"depNameTemplate": "sabnzbd/sabnzbd",
"datasourceTemplate": "github-releases"
},
{
"customType": "regex",
"description": "Detect Tini release version pin",
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"TINI_VERSION\\s+v?(?<currentValue>[0-9.]+)"
],
"depNameTemplate": "krallin/tini",
"datasourceTemplate": "github-releases"
},
{
"customType": "regex",
"description": "Detect par2cmdline release version pin",
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"PAR2CMDLINE_VERSION=v?(?<currentValue>[0-9a-z.]+-mt\\d+)"
],
"depNameTemplate": "jkansanen/par2cmdline-mt",
"datasourceTemplate": "github-tags"
}
]
}