diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bb5253be..a69cf219 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,10 +5,10 @@ jobs: name: Linux runs-on: ubuntu-latest steps: - - name: Set up Go 1.12 + - name: Set up Go 1.13 uses: actions/setup-go@v1 with: - go-version: 1.12 + go-version: 1.13 id: go - name: Check out code into the Go module directory @@ -24,10 +24,10 @@ jobs: name: Windows runs-on: windows-latest steps: - - name: Set up Go 1.12 + - name: Set up Go 1.13 uses: actions/setup-go@v1 with: - go-version: 1.12 + go-version: 1.13 id: go - name: Check out code into the Go module directory @@ -43,10 +43,10 @@ jobs: name: MacOS runs-on: macOS-latest steps: - - name: Set up Go 1.12 + - name: Set up Go 1.13 uses: actions/setup-go@v1 with: - go-version: 1.12 + go-version: 1.13 id: go - name: Check out code into the Go module directory diff --git a/.travis.yml b/.travis.yml index dabf2188..b8785210 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,8 @@ language: go go: - - 1.11.x - 1.12.x + - 1.13.x addons: apt: diff --git a/go.mod b/go.mod index 1b479dd7..b5bf4580 100644 --- a/go.mod +++ b/go.mod @@ -21,3 +21,5 @@ require ( gopkg.in/yaml.v2 v2.2.1 mvdan.cc/sh v2.6.4+incompatible ) + +go 1.13