Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: v1.26.1
go-version: v1.26.2
- uses: actions/setup-node@v4
with:
node-version: '20'
Expand All @@ -45,7 +45,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: v1.26.1
go-version: v1.26.2
- uses: actions/setup-node@v4
with:
node-version: '20'
Expand All @@ -60,7 +60,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: v1.26.1
go-version: v1.26.2
- run: make test

lint:
Expand All @@ -70,7 +70,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: v1.26.1
go-version: v1.26.2
- run: make lint

verify:
Expand All @@ -80,5 +80,5 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: v1.26.1
go-version: v1.26.2
- run: make verify
2 changes: 1 addition & 1 deletion .github/workflows/docs-gen-and-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: v1.26.1
go-version: v1.26.2
cache: true

- uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: v1.26.1
go-version: v1.26.2
- name: Delete non-semver tags
run: 'git tag -d $(git tag -l | grep -v "^v")'
- name: Set LDFLAGS
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: v1.26.1
go-version: v1.26.2
check-latest: true

# We need this to remove local tags that are not semver so goreleaser doesn't get confused.
Expand Down
2 changes: 1 addition & 1 deletion .ko.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
baseImageOverrides:
github.com/google/ko: golang:1.26.1
github.com/google/ko: golang:1.26.2

builds:
- id: konnector
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ENV VITE_BUILD_TARGET=docker
RUN npm run build

# Build Go binary with embedded UI assets
FROM golang:1.26.1 AS go-build-env
FROM golang:1.26.2 AS go-build-env
WORKDIR /app

# Accept build arguments for multi-arch support
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.konnector
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.26.1 AS builder
FROM golang:1.26.2 AS builder
WORKDIR /app

# Accept build arguments for multi-arch support
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ install: WHAT ?= ./cmd/... ./cli/cmd/...
install: ## install binaries to GOBIN
go install -ldflags="$(LDFLAGS)" $(WHAT)

.PHONY: install-crds
install-crds: ## Install all CRDs into the current cluster
kubectl apply -f deploy/crd

GOLANGCI_LINT = $(ROOT_DIR)/$(UGET_DIRECTORY)/golangci-lint-$(GOLANGCI_LINT_VERSION)

.PHONY: install-golangci-lint
Expand Down
2 changes: 1 addition & 1 deletion cli/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/kube-bind/kube-bind/cli

go 1.26.0
go 1.26.2

replace (
github.com/kube-bind/kube-bind => ../
Expand Down
2 changes: 1 addition & 1 deletion contrib/kcp/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/kube-bind/kube-bind/contrib/kcp

go 1.26.0
go 1.26.2

replace (
github.com/kube-bind/kube-bind => ../../
Expand Down
2 changes: 1 addition & 1 deletion docs/generators/cli-doc/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/kube-bind/kube-bind/docs/generators/cli-doc

go 1.26.0
go 1.26.2

replace (
github.com/kube-bind/kube-bind => ../../../
Expand Down
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ mkdocs-macros-plugin==1.0.5
mkdocs-material[imaging]>=9.7.1
mkdocs-material-extensions==1.3.1
mkdocs-static-i18n==1.3.0
pymdown-extensions==10.16.1

# https://github.com/mkdocs/mkdocs/issues/4032
click<=8.2.1
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ module github.com/kube-bind/kube-bind
// The script hack/verify-go-versions.sh checks that all version
// references across the codebase are consistent with the versions
// maintained here.
// go-build-version 1.26.1
go 1.26.0
// go-build-version 1.26.2
go 1.26.2

replace (
github.com/kube-bind/kube-bind => ./
Expand Down
2 changes: 1 addition & 1 deletion sdk/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/kube-bind/kube-bind/sdk

go 1.26.0
go 1.26.2

require (
github.com/google/go-cmp v0.7.0
Expand Down
Loading
Loading