From d282ab5dc4f8dd955c76600ee1bfafce51c5f03d Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Tue, 13 Feb 2024 02:26:13 -0800 Subject: [PATCH] Add dockerfile to renovate (#609) Add Dockerfile to renovate config. Needed to keep the base Rust image up-to-date. --- .github/renovate.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index ddfc900dc..0e2492512 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -2,7 +2,7 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["github>bitwarden/renovate-config:non-pinned"], "separateMajorMinor": true, - "enabledManagers": ["cargo", "github-actions", "npm", "nuget"], + "enabledManagers": ["cargo", "dockerfile", "github-actions", "npm", "nuget"], "packageRules": [ { "matchManagers": ["cargo"], @@ -10,6 +10,11 @@ "matchUpdateTypes": ["minor", "patch"], "groupName": "pyo3 non-major" }, + { + "groupName": "dockerfile minor", + "matchManagers": ["dockerfile"], + "matchUpdateTypes": ["minor", "patch"] + }, { "groupName": "gh minor", "matchManagers": ["github-actions"],