## Which area/kind this issue is related to? /area ci ## Issue Description Follow the Installation notes [here](https://github.com/renovatebot/renovate/blob/main/docs/usage/getting-started/installing-onboarding.md) in order to add renovate to the devfiles org. Some details: * At first only the registry repo should be included to the bot's configuration. In the future all other repos will be added. * After the installation of renovate a PR will be created to the registry repo. We will have to update this PR with the following configuration: ```json { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:base", // Using this helper in order to pin digest of github action "helpers:pinGitHubActionDigests" ], // Helps the bot only to run these managers and skip all others "enabledManagers": ["regex", "github-actions"], "regexManagers": [ { // Using regex manager to define a custom way to fetch devfile image tags "fileMatch": [ "devfile.*y[a]?ml$" ], "matchStrings": [ "image: (?<depName>\\S*):(?<currentValue>\\S*)" ], "datasourceTemplate": "docker", "depNameTemplate": "{{{depName}}}" } ], "packageRules": [ // Grouping github-actions in order to reduce renovate PR noise { "matchManagers": ["github-actions"], "groupName": "github actions", "groupSlug": "github-actions", "commitMessageTopic": "{{depName}}" } ], // Ignoring these paths in order to reduce PR noise "ignorePaths": [ "**/docker/**", ".ci/**", "tests/**" ] } ``` ## Acceptance Criteria - [x] Ensure all image references (including innerloop and outerloop) are updated for every stack - [ ] Add renovate.json and invite the self hosted bot to registry repo - [x] #1138 should also be completed in the same PR