diff --git a/.github/renovate.json5 b/.github/renovate.json5 index c9b50a226..45fcd8e3f 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -102,7 +102,7 @@ ] }, { - "groupName": "go 1.20.x", + "groupName": "go 1.21.x", "matchFileNames": [ ".github/workflows/**", ], diff --git a/Dockerfile.builder b/Dockerfile.builder index 35ff82a25..d190bfc21 100644 --- a/Dockerfile.builder +++ b/Dockerfile.builder @@ -43,7 +43,7 @@ RUN export BAZEL_VERSION=$(cat .bazelversion) \ # Install Go # # renovate: datasource=golang-version depName=go -RUN export GO_VERSION=1.21.2 \ +RUN export GO_VERSION=1.21.4 \ && curl -sfL https://go.dev/dl/go${GO_VERSION}.linux-${TARGETARCH}.tar.gz -o go.tar.gz \ && tar -C /usr/local -xzf go.tar.gz \ && rm go.tar.gz \ diff --git a/Vagrantfile b/Vagrantfile index 1a2de4089..0b843a8d7 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -6,7 +6,7 @@ $VM_CPUS = (ENV['VM_CPUS'] || 4) # Requires `vagrant plugin install vagrant-disksize` $VM_DISK = (ENV['VM_DISK'] || "100GB") -$GO_VERSION = (ENV['GO_VERSION'] || "1.20.1") +$GO_VERSION = (ENV['GO_VERSION'] || "1.21.4") ## Some inline scripts for installation $go_install = <<-'SCRIPT' diff --git a/go.mod b/go.mod index f041bbd8b..3cde85b9e 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/cilium/proxy -go 1.20 +go 1.21 require ( github.com/census-instrumentation/opencensus-proto v0.4.1