Skip to content

Commit 1f17344

Browse files
authored
Bump to release-2.13 (#145)
Signed-off-by: zlayne <[email protected]>
1 parent dd80987 commit 1f17344

File tree

6 files changed

+10
-4
lines changed

6 files changed

+10
-4
lines changed

COMPONENT_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.11.0
1+
2.13.0

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ run: ## Run the service locally.
2626
.PHONY: lint
2727
lint: ## Run lint and gosec tool.
2828
GOPATH=$(go env GOPATH)
29-
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b "${GOPATH}/bin" v1.52.2
29+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b "${GOPATH}/bin" v1.61.0
3030
CGO_ENABLED=1 GOGC=25 golangci-lint run --timeout=3m
3131
go mod tidy
3232
gosec ./...

Makefile.prow

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build:
99
.PHONY: lint
1010
lint:
1111
GOPATH=$(go env GOPATH)
12-
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b "${GOPATH}/bin" v1.52.2
12+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b "${GOPATH}/bin" v1.61.0
1313
CGO_ENABLED=1 GOGC=25 golangci-lint run --timeout=3m
1414
gosec ./...
1515

OWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ approvers:
33
- dislbenn
44
- jlpadilla
55
- SherinV
6+
- smcavey
67
- xrajesh
78
- zlayne
89

pkg/config/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"k8s.io/klog/v2"
1414
)
1515

16-
const COMPONENT_VERSION = "2.11.0"
16+
const COMPONENT_VERSION = "2.13.0"
1717

1818
var DEVELOPMENT_MODE = false // Do not change this. See config_development.go to enable.
1919
var Cfg = new()

renovate.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"schedule": "before 8am on Tuesday",
4+
"timezone": "America/New_York"
5+
}

0 commit comments

Comments
 (0)