Add Renovate config, versioned image publishing, and pinned prod requirements
CI / build-and-scan (push) Successful in 43s

This commit is contained in:
Djeex
2026-08-22 12:17:59 +02:00
parent a72b486b3b
commit 5eafd7c7cc
7 changed files with 175 additions and 10 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"timezone": "Europe/Paris",
"schedule": ["before 6am on monday"],
"packageRules": [
{
"matchManagers": ["pip_requirements"],
"matchUpdateTypes": ["patch", "minor"],
"automerge": true
},
{
"matchManagers": ["dockerfile"],
"matchUpdateTypes": ["patch"],
"automerge": true
}
],
"vulnerabilityAlerts": {
"enabled": true
}
}