Skip to content

Commit

Permalink
chore(deps): bump github.com/kong/go-kong from 0.55.0 to 0.57.1 (#126)
Browse files Browse the repository at this point in the history
* chore(deps): bump github.com/kong/go-kong from 0.55.0 to 0.57.1

Bumps [github.com/kong/go-kong](https://github.com/kong/go-kong) from 0.55.0 to 0.57.1.
- [Release notes](https://github.com/kong/go-kong/releases)
- [Changelog](https://github.com/Kong/go-kong/blob/main/CHANGELOG.md)
- [Commits](Kong/go-kong@v0.55.0...v0.57.1)

---
updated-dependencies:
- dependency-name: github.com/kong/go-kong
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* chore: go mod tidy

* chore: fix linter issues

* chore: fix linter issues

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Patryk Małek <[email protected]>
  • Loading branch information
dependabot[bot] and pmalek authored Aug 22, 2024
1 parent 9259b2b commit 8d9c724
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion pkg/file/readfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func getContent(filenames []string, mockEnvVars bool) (*Content, error) {
func getReaders(fileOrDir string) (map[string]io.Reader, error) {
// special case where `-` means stdin
if fileOrDir == "-" {
if term.IsTerminal(int(os.Stdin.Fd())) && term.IsTerminal(int(os.Stderr.Fd())) {
if term.IsTerminal(int(os.Stdin.Fd())) && term.IsTerminal(int(os.Stderr.Fd())) { //nolint:gosec
fmt.Fprintf(os.Stderr, "reading input from stdin...\n")
}
return map[string]io.Reader{"STDIN": os.Stdin}, nil
Expand Down
5 changes: 0 additions & 5 deletions tests/integration/test_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@ import (
"github.com/stretchr/testify/require"
)

func int32p(i int) *int32 {
p := int32(i)
return &p
}

func getKongAddress() string {
address := os.Getenv("DECK_KONG_ADDR")
if address != "" {
Expand Down

0 comments on commit 8d9c724

Please sign in to comment.