diff --git a/.drone.yml b/.drone.yml index 66f9e825..0b09eaa4 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,7 +4,7 @@ name: default steps: - name: download-dependencies - image: golang:1.13 + image: golang:1.14 commands: # wait for services to be ready. - cd scripts/liveness_probe @@ -20,7 +20,7 @@ steps: path: /go - name: build - image: golang:1.13 + image: golang:1.14 commands: # build diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 2717e793..cd68367e 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,13 +1,25 @@ + -**What is the problem I am trying to address?** +## What is the problem I am trying to address? Describe the issue you have been trying to solve. -**How is the fix applied?** +## How is the fix applied? Mention briefly how you have applied the fix. -**Mention the issue number it fixes or add the details of the changes if it doesn't have a specific issue.** +## What GitHub issue(s) does this PR fix or close? + + Fixes # diff --git a/Dockerfile.test b/Dockerfile.test index 9df0a7cc..c75ca4fe 100644 --- a/Dockerfile.test +++ b/Dockerfile.test @@ -1,4 +1,4 @@ -ARG GOLANG_VERSION=1.12 +ARG GOLANG_VERSION=1.14 FROM golang:$GOLANG_VERSION RUN echo $GOLANG_VERSION diff --git a/appveyor.yml b/appveyor.yml index 5159492d..2da8d497 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,7 +8,7 @@ environment: GOPROXY: https://proxy.golang.org SKIP_UNTIL_113: true -stack: go 1.13 +stack: go 1.14 test_script: - go test ./... diff --git a/cmd/proxy/Dockerfile b/cmd/proxy/Dockerfile index b922042f..5ffef06a 100644 --- a/cmd/proxy/Dockerfile +++ b/cmd/proxy/Dockerfile @@ -5,7 +5,7 @@ # You can override the Go version used to build the image. # See project Makefile if using make. # See docker --build-arg if building directly. -ARG GOLANG_VERSION=1.13 +ARG GOLANG_VERSION=1.14 FROM golang:${GOLANG_VERSION}-alpine AS builder WORKDIR $GOPATH/src/github.com/gomods/athens diff --git a/scripts/build-image/Dockerfile b/scripts/build-image/Dockerfile index a32cf423..b33d7caf 100644 --- a/scripts/build-image/Dockerfile +++ b/scripts/build-image/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.12-stretch +FROM golang:1.14-stretch WORKDIR /tmp