Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/module_generate/_templates/go/tmpl-go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module {{.ModuleLowercase}}

go 1.23
go 1.25.1
7 changes: 0 additions & 7 deletions etc/.golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,11 @@ linters:
- canonicalheader
- containedctx
- contextcheck
- copyloopvar # TODO(go1.23): reenable in follow-up
- cyclop
- depguard
- execinquery
- exhaustruct
- exportloopref
- fatcontext # TODO(go1.23): reenable in follow-up
- forcetypeassert
- funlen
- gocognit
Expand All @@ -33,26 +31,21 @@ linters:
- importas
- inamedparam
- interfacebloat
- intrange # TODO(go1.23): reenable in follow-up
- ireturn
- maintidx
- makezero
- mnd
- musttag
- nakedret
- nestif
- nilnil # TODO(go1.23): low-pri to reenable
- nlreturn
- nonamedreturns
- nosprintfhostport
- paralleltest
- perfsprint
- prealloc
- predeclared # TODO(go1.23): reenable in follow-up
- protogetter # TODO(go1.23): maybe reenable in the future but it's a big diff + buggy.
- spancheck # TODO(go1.23): reenable in follow-up
- tagliatelle
- tenv # TODO(go1.23): reenable in follow-up
- testpackage
- thelper # false positives
- varnamelen
Expand Down
4 changes: 2 additions & 2 deletions etc/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ do_brew(){
tap "viamrobotics/brews"

# pinned
brew "go@1.23", link: true, conflicts_with: ["go"]
brew "go@1.25.3", link: true, conflicts_with: ["go"]
brew "node@18", link: true, conflicts_with: ["node"]

# unpinned
Expand All @@ -177,7 +177,7 @@ do_brew(){
fi

# replace default go with pinned
brew link --overwrite go@1.23
brew link --overwrite go@1.25.3

# due to a missing bottle in homebrew, this has to be installed on its own
brew install upx
Expand Down
Loading