From c28de42590ebce1c1cee374a55dba07d6ee8c868 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 29 Oct 2022 02:17:21 +0000 Subject: [PATCH] chore(deps): update dependency go to 1.19 --- .github/renovate.json5 | 2 +- all/test/go.mod | 2 +- gwy/templates/Dockerfile.tmpl | 2 +- gwy/templates/go.mod.tmpl | 2 +- variables.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index a8fb7858..da430a06 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -5,7 +5,7 @@ "master" ], constraints: { - "go": "1.17" + "go": "1.19" }, 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/all/test/go.mod b/all/test/go.mod index d91fe48d..14e9601e 100644 --- a/all/test/go.mod +++ b/all/test/go.mod @@ -1,6 +1,6 @@ module github.com/namely/docker-protoc/test -go 1.17 +go 1.19 require ( github.com/otiai10/copy v1.7.0 diff --git a/gwy/templates/Dockerfile.tmpl b/gwy/templates/Dockerfile.tmpl index b2378729..26f7d5ab 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.19 FROM golang:$go_version-alpine$alpine_version AS build ARG go_version diff --git a/gwy/templates/go.mod.tmpl b/gwy/templates/go.mod.tmpl index 5db2642f..dba75537 100644 --- a/gwy/templates/go.mod.tmpl +++ b/gwy/templates/go.mod.tmpl @@ -1,6 +1,6 @@ module gateway -go 1.17 +go 1.19 require ( github.com/gorilla/handlers v1.5.1 diff --git a/variables.sh b/variables.sh index 99af5741..77a5d55a 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.19} GRPC_VERSION=${GRPC_VERSION:-1.50} GRPC_JAVA_VERSION=${GRPC_JAVA_VERSION:-1.50} GRPC_WEB_VERSION=${GRPC_WEB_VERSION:-1.4.2}