From 963dd17ab9a9f93610018f249eaa6f7b3d82e756 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 13 Aug 2024 17:37:10 +0000 Subject: [PATCH] chore(deps): update dependency go to 1.23 --- .github/renovate.json5 | 2 +- gwy/templates/Dockerfile.tmpl | 2 +- variables.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index be10cd24..1ddeaacd 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -5,7 +5,7 @@ "master" ], constraints: { - "go": "1.17" + "go": "1.23" }, 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 b2378729..a0c88b04 100644 --- a/gwy/templates/Dockerfile.tmpl +++ b/gwy/templates/Dockerfile.tmpl @@ -1,7 +1,7 @@ # Template for grpc-gateway ARG alpine_version=3.16 -ARG go_version=1.17 +ARG go_version=1.23 FROM golang:$go_version-alpine$alpine_version AS build ARG go_version diff --git a/variables.sh b/variables.sh index 310f4bf5..a492320d 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.17} +GO_VERSION=${GO_VERSION:-1.23} GRPC_VERSION=${GRPC_VERSION:-1.48} GRPC_JAVA_VERSION=${GRPC_JAVA_VERSION:-1.48} GRPC_WEB_VERSION=${GRPC_WEB_VERSION:-1.3.1}