Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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 .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
golangci:
strategy:
matrix:
go: [ '1.22', '1.23', '1.24' ]
go: [ '1.23', '1.24', '1.25' ]
os: [ ubuntu-latest, windows-latest ]
permissions:
contents: read # for actions/checkout to fetch code
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
module github.com/shipengqi/commitizen

go 1.24
go 1.25

require (
github.com/charmbracelet/huh v0.7.0
github.com/mitchellh/mapstructure v1.5.0
github.com/onsi/ginkgo/v2 v2.25.3
github.com/onsi/gomega v1.38.2
github.com/shipengqi/component-base v0.2.11
github.com/shipengqi/golib v0.2.27
github.com/shipengqi/golib v0.2.28
github.com/shipengqi/log v0.2.3
github.com/spf13/cobra v1.9.1
github.com/spf13/pflag v1.0.10
Expand All @@ -19,7 +19,7 @@ require (
replace golang.org/x/net v0.35.0 => golang.org/x/net v0.37.0

require (
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect; injdirect
github.com/Masterminds/semver/v3 v3.4.0 // indirect
github.com/atotto/clipboard v0.1.4 // indirect
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUc
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
github.com/shipengqi/component-base v0.2.11 h1:oNCwa3FhFBGtKVJHSc3Tr+h9ERMX6JAVxkKToeIIh4M=
github.com/shipengqi/component-base v0.2.11/go.mod h1:YJoIETZyVgILBSqiA7ze+WXgh8j/qz8WN+gpiTfnhc8=
github.com/shipengqi/golib v0.2.27 h1:X9Rq5XVaJZhVxiIj2N8Gfkwxhwa1G/u4uA+tWmMYVBY=
github.com/shipengqi/golib v0.2.27/go.mod h1:qFS6uEuKbQxVmcFpygC/PsMXphIjOx/51Y8xA2pL4QM=
github.com/shipengqi/golib v0.2.28 h1:Z+1vdXFvQ0Pea4/zBHQ05eSABS6KTxwl2X6qmC8BMwM=
github.com/shipengqi/golib v0.2.28/go.mod h1:WgTwni4VJw45qFWp4Ezf7n6OwybQ1yDW5nonGyREKA4=
github.com/shipengqi/log v0.2.3 h1:dH1LEgFV1jkojNvVf2qdjcYrWIEQ7LsHPkPaeefsTcA=
github.com/shipengqi/log v0.2.3/go.mod h1:YqXfNjg7aDR/KrXoU5KC3vCQ/YldJltQbyEwnlpJOb4=
github.com/spf13/cobra v1.9.1 h1:CXSaggrXdbHK9CF+8ywj8Amf7PBRmPCOJugH954Nnlo=
Expand Down
2 changes: 1 addition & 1 deletion hack/include/go.mk
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

GO_SUPPORTED_VERSIONS ?= 1.20|1.21|1.22|1.23|1.24
GO_SUPPORTED_VERSIONS ?= 1.20|1.21|1.22|1.23|1.24|1.25

.PHONY: go.build.verify
go.build.verify:
Expand Down
Loading