Skip to content

Commit

Permalink
Do not update go directive in go.mod (#213)
Browse files Browse the repository at this point in the history
* Do not update go directive in go.mod

* Fix
  • Loading branch information
int128 authored Nov 9, 2024
1 parent be8b295 commit 1e89575
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,21 @@
"extends": [
"github>int128/renovate-base",
"github>int128/go-renovate-config#v1.7.2",
"github>int128/go-renovate-config:go-directive#v1.7.2",
"github>int128/go-renovate-config:github-actions#v1.7.2",
"helpers:pinGitHubActionDigests",
],
"packageRules": [
{
"description": "Update go version",
"matchDatasources": ["golang-version"],
"rangeStrategy": "bump",
},
{
"description": "Do not update go directive in go.mod",
"matchDatasources": ["golang-version"],
"matchDepTypes": ["golang"],
"matchFileNames": ["go.mod"],
"enabled": false,
},
],
}

0 comments on commit 1e89575

Please sign in to comment.