diff --git a/.github/actions/amazon-linux-build-action/Dockerfile b/.github/actions/amazon-linux-build-action/Dockerfile index d60d245fb..89e13fda8 100644 --- a/.github/actions/amazon-linux-build-action/Dockerfile +++ b/.github/actions/amazon-linux-build-action/Dockerfile @@ -5,8 +5,8 @@ FROM amazonlinux:latest RUN yum install -y tar gzip gcc # install Go -ENV GOLANG_VERSION 1.16.6 -ENV GOLANG_VERSION_SHA256 be333ef18b3016e9d7cb7b1ff1fdb0cac800ca0be4cf2290fe613b3d069dfe0d +ENV GOLANG_VERSION 1.19.3 +ENV GOLANG_VERSION_SHA256 74b9640724fd4e6bb0ed2a1bc44ae813a03f1e72a4c76253e2d5c015494430ba RUN curl -o golang.tar.gz https://dl.google.com/go/go$GOLANG_VERSION.linux-amd64.tar.gz \ && echo "$GOLANG_VERSION_SHA256 golang.tar.gz" | sha256sum --strict --check \ diff --git a/.github/actions/tegola-setup-env/action.yml b/.github/actions/tegola-setup-env/action.yml index cae971d31..925d2ae2c 100644 --- a/.github/actions/tegola-setup-env/action.yml +++ b/.github/actions/tegola-setup-env/action.yml @@ -28,10 +28,10 @@ runs: path: ${{ github.workspace }}/ui/dist if: ${{ inputs.ui == 'true' }} - - name: Set up Go 1.18 + - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.18 + go-version: 1.19 if: ${{ inputs.go == 'true' }} - name: Set tegola version diff --git a/Dockerfile b/Dockerfile index 4556bf2c5..359bd16f0 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.16.2-alpine3.12 AS build +FROM golang:1.19.3-alpine3.16 AS build ARG BUILDPKG="github.com/go-spatial/tegola/internal/build" ARG VER="Version Not Set"