File tree Expand file tree Collapse file tree 7 files changed +10
-7
lines changed
Expand file tree Collapse file tree 7 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 2121 generateReleaseNotes : true
2222 makeLatest : " legacy"
2323 name : " Version ${{ steps.version.outputs.version }}"
24+ immutableCreate : true
Original file line number Diff line number Diff line change 2020 uses : actions/checkout@v6
2121 - name : Setup Go
2222 uses : actions/setup-go@v6
23+ with :
24+ go-version-file : go.mod
2325 - name : Test
2426 run : go test ./...
Original file line number Diff line number Diff line change 11module github.com/nextmn/json-api
22
3- go 1.22
3+ go 1.25.5
44
55require (
6- github.com/gofrs/uuid v4 .4.0+incompatible
6+ github.com/gofrs/uuid/v5 v5 .4.0
77 github.com/sirupsen/logrus v1.9.3
88)
99
Original file line number Diff line number Diff line change 11github.com/davecgh/go-spew v1.1.0 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
22github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c =
33github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
4- github.com/gofrs/uuid v4 .4.0+incompatible h1:3qXRTX8/NbyulANqlc0lchS1gqAVxRgsuW1YrTJupqA =
5- github.com/gofrs/uuid v4 .4.0+incompatible /go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM =
4+ github.com/gofrs/uuid/v5 v5 .4.0 h1:EfbpCTjqMuGyq5ZJwxqzn3Cbr2d0rUZU7v5ycAk/e/0 =
5+ github.com/gofrs/uuid/v5 v5 .4.0/go.mod h1:CDOjlDMVAtN56jqyRUZh58JT31Tiw7/oQyEXZV+9bD8 =
66github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
77github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
88github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ =
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ func (u *MessageWithError) UnmarshalJSON(data []byte) error {
3030 if ! ok {
3131 return fmt .Errorf ("Missing key `error` while unmarshaling MessageWithError" )
3232 }
33- u .Error = fmt .Errorf (e )
33+ u .Error = fmt .Errorf ("%s" , e )
3434 return nil
3535}
3636
Original file line number Diff line number Diff line change 55
66package n4tosrv6
77
8- import "github.com/gofrs/uuid"
8+ import "github.com/gofrs/uuid/v5 "
99
1010type RouterMap map [uuid.UUID ]Router
Original file line number Diff line number Diff line change 55
66package n4tosrv6
77
8- import "github.com/gofrs/uuid"
8+ import "github.com/gofrs/uuid/v5 "
99
1010type RuleMap map [uuid.UUID ]Rule
You can’t perform that action at this time.
0 commit comments