Skip to content

Commit cd4bcc0

Browse files
Update golangci lint (#679)
* Update common Prometheus files Signed-off-by: prombot <[email protected]> * Fix golint ci Signed-off-by: Julien <[email protected]> --------- Signed-off-by: prombot <[email protected]> Signed-off-by: Julien <[email protected]> Co-authored-by: prombot <[email protected]>
1 parent 2cac84e commit cd4bcc0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/golangci-lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ jobs:
3636
uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 # v6.1.0
3737
with:
3838
args: --verbose
39-
version: v1.59.1
39+
version: v1.60.1

Makefile.common

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ PROMU_URL := https://github.com/prometheus/promu/releases/download/v$(PROMU_
6161
SKIP_GOLANGCI_LINT :=
6262
GOLANGCI_LINT :=
6363
GOLANGCI_LINT_OPTS ?=
64-
GOLANGCI_LINT_VERSION ?= v1.59.1
64+
GOLANGCI_LINT_VERSION ?= v1.60.1
6565
# golangci-lint only supports linux, darwin and windows platforms on i386/amd64/arm64.
6666
# windows isn't included here because of the path separator being different.
6767
ifeq ($(GOHOSTOS),$(filter $(GOHOSTOS),linux darwin))

model/metric.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,6 @@ func ToEscapingScheme(s string) (EscapingScheme, error) {
452452
case EscapeValues:
453453
return ValueEncodingEscaping, nil
454454
default:
455-
return NoEscaping, fmt.Errorf("unknown format scheme " + s)
455+
return NoEscaping, fmt.Errorf("unknown format scheme %s", s)
456456
}
457457
}

model/metric_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -595,10 +595,10 @@ func TestEscapeMetricFamily(t *testing.T) {
595595
original := proto.Clone(scenario.input)
596596
got := EscapeMetricFamily(scenario.input, scenario.scheme)
597597
if !cmp.Equal(scenario.expected, got, cmpopts.IgnoreUnexported(unexportList...)) {
598-
t.Errorf("unexpected difference in escaped output:" + cmp.Diff(scenario.expected, got, cmpopts.IgnoreUnexported(unexportList...)))
598+
t.Errorf("unexpected difference in escaped output:\n%s", cmp.Diff(scenario.expected, got, cmpopts.IgnoreUnexported(unexportList...)))
599599
}
600600
if !cmp.Equal(scenario.input, original, cmpopts.IgnoreUnexported(unexportList...)) {
601-
t.Errorf("input was mutated during escaping" + cmp.Diff(scenario.expected, got, cmpopts.IgnoreUnexported(unexportList...)))
601+
t.Errorf("input was mutated during escaping:\n%s", cmp.Diff(scenario.expected, got, cmpopts.IgnoreUnexported(unexportList...)))
602602
}
603603
})
604604
}

0 commit comments

Comments
 (0)