* ci: updated all workflows to be pineed to commit hashes ahead of renovate connection * ci: update doc links regex * ci: bump version for codeql-action * ci: bump version for action/cache to v4.2.0 * ci: adding package-manager-cache: false to the node v5 setup steps * ci: remove the --include to test precedence as it was overriding * chore: added missing @ from commit hash * ci: updates to shas to bring up to latest, also update to renovate config to account for major versions * chore: update renovate global minimum age settings * updated node sha * Apply suggestion from @M0NsTeRRR Co-authored-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * Apply suggestion from @M0NsTeRRR Co-authored-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * Apply suggestion from @M0NsTeRRR Co-authored-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * Apply suggestion from @M0NsTeRRR * Apply suggestion from @M0NsTeRRR --------- Co-authored-by: Ludovic Ortega <ludovic.ortega@adminafk.fr>
24 lines
562 B
Plaintext
24 lines
562 B
Plaintext
{
|
|
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
|
|
|
|
packageRules: [
|
|
{
|
|
matchManagers: ['helm-values'],
|
|
matchFileNames: ['charts/*/values.yaml'],
|
|
minimumReleaseAge: '0'
|
|
},
|
|
],
|
|
|
|
customManagers: [
|
|
{
|
|
customType: 'regex',
|
|
description: 'Update appVersion in Chart.yaml to match Docker image',
|
|
fileMatch: ['(^|/)Chart\\.yaml$'],
|
|
matchStrings: [
|
|
'#\\s+renovate:\\s+image=(?<depName>\\S*)\nappVersion:\\s+"(?<currentValue>\\S*)"',
|
|
],
|
|
datasourceTemplate: 'docker',
|
|
},
|
|
],
|
|
}
|