Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
Danny McCormick authored and GitHub committed Jul 23, 2019
1 parent 706cf65 commit a7fe89a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -12,8 +12,8 @@ See [action.yml](action.yml)
Basic:
```yaml
actions:
- uses: actions/checkout@latest
- uses: actions/setup-go@latest
- uses: actions/checkout@master
- uses: actions/setup-go@master
with:
version: 1.9.3 // The Go version to download (if necessary) and use.
- run: go run hello.go
Expand All @@ -28,9 +28,9 @@ jobs:
go: [ 1.8, 1.9.3, 1.10 ]
name: Go ${{ matrix.go }} sample
actions:
- uses: actions/checkout@latest
- uses: actions/checkout@master
- name: Setup go
uses: actions/setup-go@latest
uses: actions/setup-go@master
with:
version: ${{ matrix.go }}
- run: go run hello.go
Expand Down

0 comments on commit a7fe89a

Please sign in to comment.