Skip to content

Commit

Permalink
Adjust go.mod values for go/toolchain (#506)
Browse files Browse the repository at this point in the history
* set go to a minor and toolchain to target

* update golang-ci config syntax
  • Loading branch information
mallardduck authored Jan 14, 2025
1 parent 8b77677 commit 1fbf9bd
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
22 changes: 14 additions & 8 deletions .golangci.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,26 @@
},
"linters-settings": {
"govet": {
"check-shadowing": false
"disable": [
"shadow"
]
},
"revive": {
"rules": {
"name": "confusing-naming",
"disabled": true
}
"rules": [
{
"name": "confusing-naming",
"disabled": true
}
]
}
},
"run": {
"skip-dirs": [
"pkg/generated"
],
"tests": false,
"timeout": "10m"
},
"issues": {
"exclude-dirs": [
"pkg/generated"
]
}
}
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module github.com/rancher/wrangler/v3

go 1.23.3
go 1.23.0

toolchain go1.23.4

require (
github.com/evanphx/json-patch v5.9.0+incompatible
Expand Down

0 comments on commit 1fbf9bd

Please sign in to comment.