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
2 changes: 1 addition & 1 deletion .github/workflows/dev-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ on:
default: false

env:
GO_VERSION: "1.24.3"
GO_VERSION: "1.25.1"

# The source code will check out in the following path: '${WORKING_DIR}/dev/greptimedb-operator'.
CHECKOUT_SOURCE_PATH: dev/greptimedb-operator
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/develop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ on:
workflow_dispatch:

env:
GO_VERSION: "1.24.3"
GO_VERSION: "1.25.1"

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
- "v*.*.*"

env:
GO_VERSION: "1.24.3"
GO_VERSION: "1.25.1"

jobs:
docker:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ CRD_REF_DOCS ?= $(LOCALBIN)/crd-ref-docs
## Tool Versions
KUSTOMIZE_VERSION ?= v5.5.0
CONTROLLER_TOOLS_VERSION ?= v0.17.2
CRD_REF_DOCS_VERSION ?= v0.1.0
CRD_REF_DOCS_VERSION ?= v0.2.0
GOLANGCI_LINT_VERSION ?= v2.1.6
SETUP_ENVTEST_VERSION ?= latest

Expand Down
2 changes: 1 addition & 1 deletion docker/initializer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.3 as builder
FROM golang:1.25.1 as builder

ENV LANG=en_US.utf8
WORKDIR /greptimedb-operator
Expand Down
2 changes: 1 addition & 1 deletion docker/operator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.3 as builder
FROM golang:1.25.1 as builder

ENV LANG=en_US.utf8
WORKDIR /greptimedb-operator
Expand Down