Skip to content

Commit 7971ee5

Browse files
authored
chore: bump to go 1.15 (#2047)
1 parent b86e7b5 commit 7971ee5

File tree

12 files changed

+15
-15
lines changed

12 files changed

+15
-15
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Go
1616
uses: actions/setup-go@v2
1717
with:
18-
go-version: 1.14
18+
go-version: 1.15
1919

2020
- name: Set up Node
2121
uses: actions/setup-node@v1
@@ -40,7 +40,7 @@ jobs:
4040
- name: Set up Go
4141
uses: actions/setup-go@v2
4242
with:
43-
go-version: 1.14
43+
go-version: 1.15
4444

4545
- name: Set up Node
4646
uses: actions/setup-node@v1
@@ -59,7 +59,7 @@ jobs:
5959
- name: Set up Go
6060
uses: actions/setup-go@v2
6161
with:
62-
go-version: 1.14
62+
go-version: 1.15
6363

6464
- name: Check out code
6565
uses: actions/checkout@v2
@@ -76,7 +76,7 @@ jobs:
7676
- name: Set up Go
7777
uses: actions/setup-go@v2
7878
with:
79-
go-version: 1.14
79+
go-version: 1.15
8080

8181
- name: Check out code
8282
uses: actions/checkout@v2

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Please read it over and let us know if it's not up-to-date (or, even better, sub
2020

2121
### Environment
2222

23-
- Make sure you are using Go 1.14 (`go version`).
23+
- Make sure you are using Go 1.15 (`go version`).
2424
- Fork the repository.
2525
- Clone your forked repository locally.
2626
- We use Go Modules to manage dependencies, so you can develop outside of your $GOPATH.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.14
1+
FROM golang:1.15
22
# We need to have both nodejs and go to build the binaries.
33
# We could use multi-stage builds but that would require significantly changing our Makefile.
44
RUN apt-get update

e2e/addons/hello/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# We specify the base image we need for our
22
# go application
3-
FROM golang:1.14 AS builder
3+
FROM golang:1.15 AS builder
44
# We create an /app directory within our
55
# image that will hold our application source
66
# files

e2e/addons/hello/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module hello
22

3-
go 1.14
3+
go 1.15
44

55
require (
66
github.com/aws/aws-sdk-go v1.29.22 // indirect

e2e/multi-svc-app/back-end/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# We specify the base image we need for our
22
# go application
3-
FROM golang:1.14 AS builder
3+
FROM golang:1.15 AS builder
44
# We create an /app directory within our
55
# image that will hold our application source
66
# files

e2e/multi-svc-app/back-end/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module github.com/aws/copilot-cli/e2e/multi-app-project/back-end
22

3-
go 1.14
3+
go 1.15
44

55
require github.com/julienschmidt/httprouter v1.3.0 // indirect

e2e/multi-svc-app/front-end/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# We specify the base image we need for our
22
# go application
3-
FROM golang:1.14 AS builder
3+
FROM golang:1.15 AS builder
44
# We create an /app directory within our
55
# image that will hold our application source
66
# files

e2e/multi-svc-app/front-end/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module github.com/aws/copilot-cli/e2e/multi-app-project/front-end
22

3-
go 1.14
3+
go 1.15
44

55
require github.com/julienschmidt/httprouter v1.3.0

e2e/multi-svc-app/www/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# We specify the base image we need for our
22
# go application
3-
FROM golang:1.14 AS builder
3+
FROM golang:1.15 AS builder
44
# We create an /app directory within our
55
# image that will hold our application source
66
# files

0 commit comments

Comments
 (0)