Skip to content

Commit

Permalink
envoy: Bump go version to 1.21.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sayboras committed Nov 27, 2023
1 parent 480bc71 commit bb1a514
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
]
},
{
"groupName": "go 1.20.x",
"groupName": "go 1.21.x",
"matchFileNames": [
".github/workflows/**",
],
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.builder
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit bb1a514

Please sign in to comment.