Skip to content

Commit c4e8725

Browse files
authored
Update Go to 1.15 (#64)
1 parent 12e0167 commit c4e8725

File tree

6 files changed

+34
-132
lines changed

6 files changed

+34
-132
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// https://github.com/microsoft/vscode-dev-containers
33
{
44
"name": "Go",
5-
"image": "golang:1.14",
5+
"image": "golang:1.15",
66
"runArgs": [
77
"--cap-add=SYS_PTRACE",
88
"--security-opt",

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
2222
- uses: actions/setup-go@v2
2323
with:
24-
go-version: 1.14
24+
go-version: 1.15
2525
- name: Build
2626
run: make ci
2727
- name: Upload coverage

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fetch-depth: 0
1515
- uses: actions/setup-go@v2
1616
with:
17-
go-version: 1.14
17+
go-version: 1.15
1818
- name: Release
1919
run: make release
2020
env:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ docker: ## run in golang container, example: make docker run="make ci"
8282
docker run --rm \
8383
-v $(CURDIR):/repo $(args) \
8484
-w /repo \
85-
golang:1.14 $(run)
85+
golang:1.15 $(run)
8686

8787
.PHONY: help
8888
help:

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module github.com/golang-templates/seed
22

3-
go 1.14
3+
go 1.15
44

55
require (
66
github.com/golangci/golangci-lint v1.31.0
77
github.com/goreleaser/goreleaser v0.143.0
8-
golang.org/x/tools v0.0.0-20200812195022-5ae4c3c160a0
8+
golang.org/x/tools v0.0.0-20200918232735-d647fc253266
99
)

0 commit comments

Comments
 (0)