Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Chore] Bump to Go1.23 #808

Merged
merged 1 commit into from
Jan 7, 2025
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 packages/doppler/packaging
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
set -ex

source /var/vcap/packages/golang-1.22-linux/bosh/compile.env
source /var/vcap/packages/golang-1.23-linux/bosh/compile.env
export GOPATH=/var/vcap

go build -o ${BOSH_INSTALL_TARGET}/doppler ./router/
2 changes: 1 addition & 1 deletion packages/doppler/spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: doppler

dependencies:
- golang-1.22-linux
- golang-1.23-linux

files:
- diodes/**/*.go
Expand Down
2 changes: 0 additions & 2 deletions packages/golang-1.22-linux/spec.lock

This file was deleted.

2 changes: 1 addition & 1 deletion packages/loggregator_trafficcontroller/packaging
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
set -ex

source /var/vcap/packages/golang-1.22-linux/bosh/compile.env
source /var/vcap/packages/golang-1.23-linux/bosh/compile.env
export GOPATH=/var/vcap

go build -o ${BOSH_INSTALL_TARGET}/trafficcontroller ./trafficcontroller/
2 changes: 1 addition & 1 deletion packages/loggregator_trafficcontroller/spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: loggregator_trafficcontroller

dependencies:
- golang-1.22-linux
- golang-1.23-linux

files:
- metricemitter/**/*.go
Expand Down
2 changes: 1 addition & 1 deletion packages/reverse_log_proxy/packaging
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
set -ex

source /var/vcap/packages/golang-1.22-linux/bosh/compile.env
source /var/vcap/packages/golang-1.23-linux/bosh/compile.env
export GOPATH=/var/vcap

go build -o ${BOSH_INSTALL_TARGET}/rlp ./rlp/
2 changes: 1 addition & 1 deletion packages/reverse_log_proxy/spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: reverse_log_proxy

dependencies:
- golang-1.22-linux
- golang-1.23-linux

files:
- metricemitter/**/*.go
Expand Down
2 changes: 1 addition & 1 deletion packages/reverse_log_proxy_gateway/packaging
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
set -ex

source /var/vcap/packages/golang-1.22-linux/bosh/compile.env
source /var/vcap/packages/golang-1.23-linux/bosh/compile.env
export GOPATH=/var/vcap

go build -o ${BOSH_INSTALL_TARGET}/rlp-gateway ./rlp-gateway/
2 changes: 1 addition & 1 deletion packages/reverse_log_proxy_gateway/spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: reverse_log_proxy_gateway

dependencies:
- golang-1.22-linux
- golang-1.23-linux

files:
- metricemitter/**/*.go
Expand Down
4 changes: 1 addition & 3 deletions src/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module code.cloudfoundry.org/loggregator-release/src

go 1.22.0

toolchain go1.22.10
go 1.23.0

require (
code.cloudfoundry.org/go-batching v0.0.0-20241223135445-b8f45a03eb70
Expand Down
Loading