Skip to content

Commit

Permalink
fix(renovate): add package rule for disabling toolchain updates (#10961)
Browse files Browse the repository at this point in the history
#### Description
- Added a rule to ignore updates to the go toolchain. According to
[this](https://github.com/renovatebot/renovate/blob/main/lib/modules/manager/gomod/update.ts#L51-L55),
the toolchain update is a `depType` in the `gomod` manager.

#### Link to tracking issue
Fixes #10932
  • Loading branch information
mahadzaryab1 committed Aug 26, 2024
1 parent bca56c4 commit 00c8ea9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@
"matchManagers": ["gomod"],
"matchPackagePrefixes": ["go.opentelemetry.io/build-tools"],
"groupName": "All go.opentelemetry.io/build-tools packages"
},
{
"matchManagers": ["gomod"],
"matchDepTypes": ["toolchain"],
"enabled": false
}
],
"ignoreDeps": [
Expand Down

0 comments on commit 00c8ea9

Please sign in to comment.