Merge pull request #87 from ineiti/patch-1

Reference latest setup-go
This commit is contained in:
Josh Gross 2021-08-30 17:57:13 -04:00 committed by GitHub
commit 0ea1f64ec9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,7 +50,7 @@ Basic:
```yaml
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v1
- uses: actions/setup-go@v2
with:
go-version: '1.9.3' # The Go version to download (if necessary) and use.
- run: go run hello.go
@ -68,7 +68,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- run: go run hello.go