Skip to content

Commit 9eb9ef7

Browse files
[SM-1288] - Configure renovate to track go dependencies (#811)
## 🎟️ Tracking https://bitwarden.atlassian.net/browse/SM-1288 ## 📔 Objective Configure dependency tracking for the Go wrapper. Dependency upgrades should be tracked here, rather than the `bitwarden/sm-sdk-go` repo, since this is the source for what gets pushed there. ## ⏰ Reminders before review - Contributor guidelines followed - All formatters and local linters executed and passed - Written new unit and / or integration tests where applicable - Protected functional changes with optionality (feature flags) - Used internationalization (i18n) for all UI strings - CI builds passed - Communicated to DevOps any deployment requirements - Updated any necessary documentation (Confluence, contributing docs) or informed the documentation team ## 🦮 Reviewer guidelines <!-- Suggested interactions but feel free to use (or not) as you desire! --> - 👍 (`:+1:`) or similar for great changes - 📝 (`:memo:`) or ℹ️ (`:information_source:`) for notes or general info - ❓ (`:question:`) for questions - 🤔 (`:thinking:`) or 💭 (`:thought_balloon:`) for more open inquiry that's not quite a confirmed issue and could potentially benefit from discussion - 🎨 (`:art:`) for suggestions / improvements - ❌ (`:x:`) or ⚠️ (`:warning:`) for more significant problems or concerns needing attention - 🌱 (`:seedling:`) or ♻️ (`:recycle:`) for future improvements or indications of technical debt - ⛏ (`:pick:`) for minor or nitpick changes
1 parent 9de0542 commit 9eb9ef7

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/renovate.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": ["github>bitwarden/renovate-config:non-pinned"],
44
"separateMajorMinor": true,
5-
"enabledManagers": ["cargo", "dockerfile", "github-actions", "npm", "nuget"],
5+
"enabledManagers": ["cargo", "dockerfile", "github-actions", "gomod", "npm", "nuget"],
6+
"constraints": {
7+
"go": "1.21"
8+
},
69
"packageRules": [
710
{
811
"matchManagers": ["cargo"],
@@ -19,6 +22,11 @@
1922
"groupName": "gh minor",
2023
"matchManagers": ["github-actions"],
2124
"matchUpdateTypes": ["minor", "patch"]
25+
},
26+
{
27+
"groupName": "go minor",
28+
"matchManagers": ["gomod"],
29+
"matchUpdateTypes": ["minor", "patch"]
2230
}
2331
],
2432
"ignoreDeps": ["dotnet-sdk"]

0 commit comments

Comments
 (0)