Skip to content

Commit 77a8431

Browse files
committed
update instructions now that Go 1.17 is out
1 parent e3aae0d commit 77a8431

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: [1.15.x, 1.16.x]
7+
go-version: [1.16.x, 1.17.x]
88
os: [ubuntu-latest, macos-latest, windows-latest]
99
runs-on: ${{ matrix.os }}
1010
steps:
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install Go
2424
uses: actions/setup-go@v2
2525
with:
26-
go-version: 1.16.x
26+
go-version: 1.17.x
2727
- name: Checkout code
2828
uses: actions/checkout@v2
2929
- uses: actions/cache@v2

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
test:
1414
strategy:
1515
matrix:
16-
go-version: [1.15.x, 1.16.x]
16+
go-version: [1.16.x, 1.17.x]
1717
os: [ubuntu-latest, macos-latest, windows-latest]
1818
runs-on: ${{ matrix.os }}
1919
steps:
@@ -42,8 +42,8 @@ repository's code.
4242

4343
#### What about module support?
4444

45-
If your repository contains a `go.mod` file, Go 1.12 and later will already use
46-
module mode by default. To turn it on explicitly, set `GO111MODULE=on`.
45+
Go 1.16 and later will already use module mode by default.
46+
Go 1.12 and later do the same if a `go.mod` file is present.
4747

4848
#### How do I set environment variables?
4949

0 commit comments

Comments
 (0)