Skip to content

Commit 47bcf50

Browse files
author
Pavel Okhlopkov
committed
bump
Signed-off-by: Pavel Okhlopkov <[email protected]>
1 parent 2477828 commit 47bcf50

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/lint.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
3737
- name: Run golangci-lint
3838
run: |
39-
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b . v1.59.1
39+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b . v1.60.1
4040
./golangci-lint run --sort-results --build-tags integration,test
4141
4242

test/utils/jqmatcher.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/onsi/gomega/matchers"
1111
"github.com/onsi/gomega/types"
1212

13-
. "github.com/flant/libjq-go"
13+
libjq_go "github.com/flant/libjq-go"
1414
)
1515

1616
// var _ = Ω(verBcs).To(MatchJq(`.[0] | has("objects")`, Equal(true)))
@@ -43,7 +43,7 @@ func (matcher *matchJq) Match(actual interface{}) (success bool, err error) {
4343
}
4444

4545
//nolint:typecheck // Ignore false positive: undeclared name: `Jq`.
46-
res, err := Jq().Program(matcher.JqExpr).Run(matcher.InputString)
46+
res, err := libjq_go.Jq().Program(matcher.JqExpr).Run(matcher.InputString)
4747
if err != nil {
4848
return false, fmt.Errorf("MatchJq apply jq expression: %s\n", err)
4949
}

0 commit comments

Comments
 (0)