-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: update development tools * chore: update go deps * chore: update go to 1.22.7 in ci * chore: update tools in makefile * chore: relax go version constraint in go.mod * chore: update linter rules and fix linting issues * chore: update go deps * fix: specify patch version in go.work.dist * chore: update ci tools * fix: replace --debug with --verbise in goreleaser invokations * chore: update goreleaser config to v2
- Loading branch information
Showing
20 changed files
with
127 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
adr-tools 3.0.0 | ||
golang 1.23.1 | ||
golang 1.22.7 | ||
golangci-lint 1.61.0 | ||
goreleaser 1.25.1 | ||
goreleaser 2.3.1 | ||
hadolint 2.12.0 | ||
markdownlint-cli2 0.13.0 | ||
markdownlint-cli2 0.14.0 | ||
shellcheck 0.10.0 | ||
shfmt 3.9.0 | ||
yamllint 1.35.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,24 @@ | ||
module github.com/atombender/go-jsonschema | ||
|
||
go 1.22 | ||
go 1.22.0 | ||
|
||
toolchain go1.22.7 | ||
|
||
require ( | ||
github.com/goccy/go-yaml v1.12.0 | ||
github.com/mitchellh/go-wordwrap v1.0.1 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/sanity-io/litter v1.5.5 | ||
github.com/spf13/cobra v1.8.1 | ||
golang.org/x/exp v0.0.0-20240904232852-e7e105dedf7e | ||
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 | ||
) | ||
|
||
require ( | ||
github.com/fatih/color v1.16.0 // indirect | ||
github.com/fatih/color v1.17.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
golang.org/x/sys v0.19.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect | ||
golang.org/x/sys v0.25.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
go 1.22 | ||
go 1.22.0 | ||
|
||
use ( | ||
. | ||
|
Oops, something went wrong.