diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ab8b2661a..576e631a6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ env: BUILD_OS: linux BUILD_ARCH: amd64 - GO_VERSION: 1.18 + GO_VERSION: 1.19 GOFLAGS: -mod=readonly NODE_VERSION: 16 diff --git a/extra/server-discovery/Dockerfile.snapshot b/extra/server-discovery/Dockerfile.snapshot index a82e7e5b7..5dc3f3063 100644 --- a/extra/server-discovery/Dockerfile.snapshot +++ b/extra/server-discovery/Dockerfile.snapshot @@ -1,5 +1,5 @@ # build stage -FROM golang:1.16-buster as build-stage +FROM golang:1.19-buster as build-stage ENV BUILD_OS=linux ENV BUILD_ARCH=amd64 diff --git a/extra/server-discovery/go.mod b/extra/server-discovery/go.mod index 47891f84e..64daca702 100644 --- a/extra/server-discovery/go.mod +++ b/extra/server-discovery/go.mod @@ -1,6 +1,6 @@ module github.com/cortezaproject/corteza/extra/server-discovery -go 1.18 +go 1.19 require ( github.com/cortezaproject/corteza/server v0.0.0-00010101000000-000000000000 diff --git a/server/Dockerfile.snapshot b/server/Dockerfile.snapshot index 98e06498e..e7ae51aa2 100644 --- a/server/Dockerfile.snapshot +++ b/server/Dockerfile.snapshot @@ -8,7 +8,7 @@ RUN yarn install && yarn build --mode dev --sourcemap # build server -FROM golang:1.18-buster as server-build-stage +FROM golang:1.19-buster as server-build-stage ENV BUILD_OS=linux ENV BUILD_ARCH=amd64 diff --git a/server/go.mod b/server/go.mod index 0c4095b4d..5feab2890 100644 --- a/server/go.mod +++ b/server/go.mod @@ -1,6 +1,6 @@ module github.com/cortezaproject/corteza/server -go 1.18 +go 1.19 // This is useful when testing changes on corteza-locale // and you do not want to push on every change in the locale repo