From a58cd8965c1444b87e436460017550ae5840815f Mon Sep 17 00:00:00 2001 From: Alexander Rolek Date: Fri, 19 Jul 2024 14:52:48 -0600 Subject: [PATCH] Bump Go to 1.22.5 --- Dockerfile | 2 +- README.md | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6335e637b..b137044a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ # $ docker run -v /path/to/docker-config:/opt/tegola_config -p 8080 tegola serve # Intermediary container for building -FROM golang:1.21.12-alpine3.20 AS build +FROM golang:1.22.5-alpine3.20 AS build ARG BUILDPKG="github.com/go-spatial/tegola/internal/build" ARG VER="Version Not Set" diff --git a/README.md b/README.md index 9eaf786fa..1dc5cf962 100644 --- a/README.md +++ b/README.md @@ -210,7 +210,7 @@ The requested tile will be encoded with a layer that has the `name` value set to ## Building from source -Tegola is written in [Go](https://golang.org/) and requires [Go 1.21](https://go.dev/dl/) or higher to compile from the source. +Tegola is written in [Go](https://golang.org/) and requires [Go 1.22](https://go.dev/dl/) or higher to compile from the source. (We support the two newest versions of Go.) To build tegola from the source, make sure you have Go installed and have cloned the repository. Navigate to the repository then run the following command: diff --git a/go.mod b/go.mod index 7f5a94f8b..fa8a6f1fe 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/go-spatial/tegola -go 1.21 +go 1.22.5 require ( cloud.google.com/go/storage v1.28.1