Skip to content

Commit 74c825a

Browse files
committed
Upgrade to Go 1.13
1 parent db3660b commit 74c825a

File tree

4 files changed

+3
-38
lines changed

4 files changed

+3
-38
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.12.9
1+
FROM golang:1.13.0
22

33
ENV DEBIAN_FRONTEND=noninteractive
44

.devcontainer/build-dev.sh

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -28,37 +28,3 @@ DIFF_SO_FANCY_VERSION="1.2.6"
2828
download https://raw.githubusercontent.com/so-fancy/diff-so-fancy/v${DIFF_SO_FANCY_VERSION}/third_party/build_fatpack/diff-so-fancy \
2929
ed9de2669c789d1aba8456d0a7cf95adb326e220c99af4336405f21add8f0852 /usr/bin/diff-so-fancy
3030
chmod a+x /usr/bin/diff-so-fancy
31-
32-
# The following is taken from
33-
# https://github.com/microsoft/vscode-remote-try-go/blob/master/.devcontainer/Dockerfile
34-
35-
# Install gocode-gomod
36-
go get -x -d github.com/stamblerre/gocode 2>&1
37-
go build -o gocode-gomod github.com/stamblerre/gocode
38-
mv gocode-gomod $GOPATH/bin/
39-
40-
# Install Go tools
41-
go get -u -v \
42-
github.com/mdempsky/gocode \
43-
github.com/uudashr/gopkgs/cmd/gopkgs \
44-
github.com/ramya-rao-a/go-outline \
45-
github.com/acroca/go-symbols \
46-
github.com/godoctor/godoctor \
47-
golang.org/x/tools/cmd/guru \
48-
golang.org/x/tools/cmd/gorename \
49-
github.com/rogpeppe/godef \
50-
github.com/zmb3/gogetdoc \
51-
github.com/haya14busa/goplay/cmd/goplay \
52-
github.com/sqs/goreturns \
53-
github.com/josharian/impl \
54-
github.com/davidrjenni/reftools/cmd/fillstruct \
55-
github.com/fatih/gomodifytags \
56-
github.com/cweill/gotests/... \
57-
golang.org/x/tools/cmd/goimports \
58-
golang.org/x/lint/golint \
59-
golang.org/x/tools/cmd/gopls \
60-
github.com/alecthomas/gometalinter \
61-
honnef.co/go/tools/... \
62-
github.com/golangci/golangci-lint/cmd/golangci-lint \
63-
github.com/mgechev/revive \
64-
github.com/derekparker/delve/cmd/dlv

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
dist: bionic
22
language: go
33
go:
4-
- "1.12.9"
4+
- "1.13"
55
os:
66
- linux
77
services:
@@ -11,7 +11,6 @@ git:
1111
env:
1212
global:
1313
- "PATH=$PATH:~/bin"
14-
- "GO111MODULE=on"
1514
sudo: false
1615
install:
1716
- ./.devcontainer/build-common.sh

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/ensody/ssh-agent-inject
22

3-
go 1.12
3+
go 1.13
44

55
require (
66
github.com/Microsoft/go-winio v0.4.14

0 commit comments

Comments
 (0)