diff --git a/.github/renovate.json5 b/.github/renovate.json5 index da430a06..9f5fadbe 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -5,7 +5,7 @@ "master" ], constraints: { - "go": "1.19" + "go": "1.20" }, extends: [ // A lot of default settings that you can extend can be found in the presets section: https://docs.renovatebot.com/presets-compatibility/ diff --git a/gwy/templates/Dockerfile.tmpl b/gwy/templates/Dockerfile.tmpl index 11f8775e..cc4ec2a3 100644 --- a/gwy/templates/Dockerfile.tmpl +++ b/gwy/templates/Dockerfile.tmpl @@ -1,7 +1,7 @@ # Template for grpc-gateway ARG alpine_version=3.18 -ARG go_version=1.19 +ARG go_version=1.20 FROM golang:$go_version-alpine$alpine_version AS build ARG go_version diff --git a/variables.sh b/variables.sh index 6b4801dc..2fa3ace9 100755 --- a/variables.sh +++ b/variables.sh @@ -7,7 +7,7 @@ CONTAINER=${DOCKER_REPO}${NAMESPACE} LATEST=${1:false} DEBIAN_VERSION=${DEBIAN_VERSION:-bullseye} -GO_VERSION=${GO_VERSION:-1.19} +GO_VERSION=${GO_VERSION:-1.20} GRPC_VERSION=${GRPC_VERSION:-1.51} GRPC_JAVA_VERSION=${GRPC_JAVA_VERSION:-1.51} GRPC_WEB_VERSION=${GRPC_WEB_VERSION:-1.4.2}