diff --git a/.github/workflows/cross-darwin.yml b/.github/workflows/cross-darwin.yml index dad435eb9..9f5575fc7 100644 --- a/.github/workflows/cross-darwin.yml +++ b/.github/workflows/cross-darwin.yml @@ -16,10 +16,10 @@ jobs: steps: - - name: Set up Go 1.13 + - name: Set up Go 1.14 uses: actions/setup-go@v1 with: - go-version: 1.13 + go-version: 1.14 id: go - name: Check out code into the Go module directory diff --git a/.github/workflows/cross-freebsd.yml b/.github/workflows/cross-freebsd.yml index 978d57ac7..618399e85 100644 --- a/.github/workflows/cross-freebsd.yml +++ b/.github/workflows/cross-freebsd.yml @@ -16,10 +16,10 @@ jobs: steps: - - name: Set up Go 1.13 + - name: Set up Go 1.14 uses: actions/setup-go@v1 with: - go-version: 1.13 + go-version: 1.14 id: go - name: Check out code into the Go module directory diff --git a/.github/workflows/cross-openbsd.yml b/.github/workflows/cross-openbsd.yml index 7504c9c89..23d1d8076 100644 --- a/.github/workflows/cross-openbsd.yml +++ b/.github/workflows/cross-openbsd.yml @@ -16,10 +16,10 @@ jobs: steps: - - name: Set up Go 1.13 + - name: Set up Go 1.14 uses: actions/setup-go@v1 with: - go-version: 1.13 + go-version: 1.14 id: go - name: Check out code into the Go module directory diff --git a/.github/workflows/cross-windows.yml b/.github/workflows/cross-windows.yml index 928ce596c..6e94180cd 100644 --- a/.github/workflows/cross-windows.yml +++ b/.github/workflows/cross-windows.yml @@ -16,10 +16,10 @@ jobs: steps: - - name: Set up Go 1.13 + - name: Set up Go 1.14 uses: actions/setup-go@v1 with: - go-version: 1.13 + go-version: 1.14 id: go - name: Check out code into the Go module directory diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 2e6754721..4373a25be 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -16,10 +16,10 @@ jobs: steps: - - name: Set up Go 1.13 + - name: Set up Go 1.14 uses: actions/setup-go@v1 with: - go-version: 1.13 + go-version: 1.14 id: go - name: Check out code into the Go module directory diff --git a/.github/workflows/staticcheck.yml b/.github/workflows/staticcheck.yml index 6ced868d0..f5f7b03bb 100644 --- a/.github/workflows/staticcheck.yml +++ b/.github/workflows/staticcheck.yml @@ -13,10 +13,10 @@ jobs: runs-on: ubuntu-latest steps: - - name: Set up Go 1.13 + - name: Set up Go 1.14 uses: actions/setup-go@v1 with: - go-version: 1.13 + go-version: 1.14 - name: Check out code uses: actions/checkout@v1 diff --git a/Dockerfile b/Dockerfile index 3ffb942f7..bfaa4d5bc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -FROM golang:1.13-alpine AS build-env +FROM golang:1.14-alpine AS build-env WORKDIR /go/src/tailscale diff --git a/README.md b/README.md index 403911cd1..52d56730d 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ go install tailscale.com/cmd/tailscale{,d} ``` We only support the latest Go release and any Go beta or release -candidate builds (currently Go 1.13.x or Go 1.14) in module mode. It +candidate builds (currently Go 1.14 or Go 1.15) in module mode. It might work in earlier Go versions or in GOPATH mode, but we're making no effort to keep those working. diff --git a/go.mod b/go.mod index ba1692c94..f8a121ce5 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module tailscale.com -go 1.13 +go 1.14 require ( github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239 // indirect