From 55504ead19b168bc41f84c5a1d4f722ec92df0f6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 17 Oct 2022 13:04:57 +0000 Subject: [PATCH] chore(deps): update dependency go to 1.19 --- .github/renovate.json5 | 2 +- all/test/go.mod | 2 +- all/test/go.sum | 4 ++++ gwy/templates/Dockerfile.tmpl | 2 +- gwy/templates/go.mod.tmpl | 2 +- variables.sh | 2 +- 6 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 553e3f44..ed4aacb1 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 788bb78b..8f1efa8b 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/all/test/go.sum b/all/test/go.sum index 84b50499..ae83e0e4 100644 --- a/all/test/go.sum +++ b/all/test/go.sum @@ -3,6 +3,10 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/otiai10/copy v1.7.0 h1:hVoPiN+t+7d2nzzwMiDHPSOogsWAStewq3TwU05+clE= github.com/otiai10/copy v1.7.0/go.mod h1:rmRl6QPdJj6EiUqXQ/4Nn2lLXoNQjFCQbbNrxgc/t3U= +github.com/otiai10/curr v0.0.0-20150429015615-9b4961190c95/go.mod h1:9qAhocn7zKJG+0mI8eUu6xqkFDYS2kb2saOteoSB3cE= +github.com/otiai10/curr v1.0.0/go.mod h1:LskTG5wDwr8Rs+nNQ+1LlxRjAtTZZjtJW4rMXl6j4vs= +github.com/otiai10/mint v1.3.0/go.mod h1:F5AjcsTsWUqX+Na9fpHb52P8pcRX2CI6A3ctIT91xUo= +github.com/otiai10/mint v1.3.3/go.mod h1:/yxELlJQ0ufhjUwhshSj+wFjZ78CnZ48/1wtmBH1OTc= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= 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 9069e285..aea43f77 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 35ff5b0b..9c39dd8e 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.1}