From 580ba60a3ea6e0ea0876710a0e80a94ddbc6e1e4 Mon Sep 17 00:00:00 2001 From: Stefan Scherer Date: Wed, 3 Mar 2021 13:36:58 +0100 Subject: [PATCH] Use go 1.15 Signed-off-by: Stefan Scherer --- .github/actions/update-website-config/Dockerfile | 2 +- .github/actions/update-website-config/go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/update-website-config/Dockerfile b/.github/actions/update-website-config/Dockerfile index 251a5e2654..dca8c714ba 100644 --- a/.github/actions/update-website-config/Dockerfile +++ b/.github/actions/update-website-config/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.14 +FROM golang:1.15 WORKDIR /src COPY go.mod go.sum ./ diff --git a/.github/actions/update-website-config/go.mod b/.github/actions/update-website-config/go.mod index cb7ef2a776..b0797910f4 100644 --- a/.github/actions/update-website-config/go.mod +++ b/.github/actions/update-website-config/go.mod @@ -1,6 +1,6 @@ module github.com/docker/docker.github.io/upload-website-config -go 1.14 +go 1.15 require ( github.com/aws/aws-sdk-go v1.29.24