File tree Expand file tree Collapse file tree 5 files changed +10
-11
lines changed Expand file tree Collapse file tree 5 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 2727 - uses : actions/checkout@v2
2828 - uses : actions/setup-go@v2
2929 with :
30- go-version : ' ^1.21.1 ' # The Go version to download (if necessary) and use.
30+ go-version : ' ^1.22.4 ' # The Go version to download (if necessary) and use.
3131 - name : Install Build Dependencies
3232 run : make get-build-deps
3333 - name : Download required modules
Original file line number Diff line number Diff line change 55# docker run --rm -it -v /tmp:/tmp bitnami/ini-file del -k "title" -s "My book" /tmp/my.ini
66#
77
8- FROM golang:1.21 -bullseye as build
8+ FROM golang:1.22 -bullseye as build
99
1010RUN apt-get update && apt-get install -y --no-install-recommends \
1111 git make upx \
Original file line number Diff line number Diff line change 11module github.com/bitnami/ini-file
22
3- go 1.21
3+ go 1.22
44
55require (
66 github.com/bitnami/gonit v0.2.0
77 github.com/go-ini/ini v1.67.0
8- github.com/jessevdk/go-flags v1.5.0
8+ github.com/jessevdk/go-flags v1.6.1
99 github.com/juamedgod/cliassert v0.0.0-20180320011200-425256f2bb0b
1010 github.com/stretchr/testify v1.2.2
1111)
1212
1313require (
1414 github.com/davecgh/go-spew v1.1.1 // indirect
1515 github.com/pmezard/go-difflib v1.0.0 // indirect
16- golang.org/x/sys v0.2 .0 // indirect
16+ golang.org/x/sys v0.21 .0 // indirect
1717)
Original file line number Diff line number Diff line change @@ -4,14 +4,13 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
44github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
55github.com/go-ini/ini v1.67.0 h1:z6ZrTEZqSWOTyH2FlglNbNgARyHG8oLW9gMELqKr06A =
66github.com/go-ini/ini v1.67.0 /go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8 =
7- github.com/jessevdk/go-flags v1.5.0 h1:1jKYvbxEjfUl0fmqTCOfonvskHHXMjBySTLW4y9LFvc =
8- github.com/jessevdk/go-flags v1.5.0 /go.mod h1:Fw0T6WPc1dYxT4mKEZRfG5kJhaTDP9pj1c2EWnYs/m4 =
7+ github.com/jessevdk/go-flags v1.6.1 h1:Cvu5U8UGrLay1rZfv/zP7iLpSHGUZ/Ou68T0iX1bBK4 =
8+ github.com/jessevdk/go-flags v1.6.1 /go.mod h1:Mk8T1hIAWpOiJiHa9rJASDK2UGWji0EuPGBnNLMooyc =
99github.com/juamedgod/cliassert v0.0.0-20180320011200-425256f2bb0b h1:j2GwaFh0vduPA3PilmBcsdWv0reobJHyIxGJnh9gIAA =
1010github.com/juamedgod/cliassert v0.0.0-20180320011200-425256f2bb0b /go.mod h1:+N11eVKRhj1RNqjc9l+QMib0/XYixFOywXFH1zoGucg =
1111github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
1212github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
1313github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w =
1414github.com/stretchr/testify v1.2.2 /go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs =
15- golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4 /go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs =
16- golang.org/x/sys v0.2.0 h1:ljd4t30dBnAvMZaQCevtY0xLLD0A+bRZXbgLMLU1F/A =
17- golang.org/x/sys v0.2.0 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
15+ golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws =
16+ golang.org/x/sys v0.21.0 /go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA =
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type Options struct {
1515var globalOpts = & Options {}
1616
1717var (
18- version = "1.4.6 "
18+ version = "1.4.7 "
1919 buildDate = ""
2020 commit = ""
2121)
You can’t perform that action at this time.
0 commit comments