diff --git a/internal/updatecheck/handler.go b/internal/updatecheck/handler.go index 691289f9cb2..140dfc172c6 100644 --- a/internal/updatecheck/handler.go +++ b/internal/updatecheck/handler.go @@ -32,17 +32,17 @@ var ( // non-cluster, non-docker-compose, and non-pure-docker installations what the latest // version is. The version here _must_ be available at https://hub.docker.com/r/sourcegraph/server/tags/ // before landing in master. - latestReleaseDockerServerImageBuild = newPingResponse("5.4.3643") + latestReleaseDockerServerImageBuild = newPingResponse("5.4.5099") // latestReleaseKubernetesBuild is only used by sourcegraph.com to tell existing Sourcegraph // cluster deployments what the latest version is. The version here _must_ be available in // a tag at https://github.com/sourcegraph/deploy-sourcegraph before landing in master. - latestReleaseKubernetesBuild = newPingResponse("5.4.3643") + latestReleaseKubernetesBuild = newPingResponse("5.4.5099") // latestReleaseDockerComposeOrPureDocker is only used by sourcegraph.com to tell existing Sourcegraph // Docker Compose or Pure Docker deployments what the latest version is. The version here _must_ be // available in a tag at https://github.com/sourcegraph/deploy-sourcegraph-docker before landing in master. - latestReleaseDockerComposeOrPureDocker = newPingResponse("5.4.3643") + latestReleaseDockerComposeOrPureDocker = newPingResponse("5.4.5099") ) func getLatestRelease(deployType string) pingResponse {