Skip to content

Commit a7fe89a

Browse files
author
Danny McCormick
authored
Update README.md
1 parent 706cf65 commit a7fe89a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ See [action.yml](action.yml)
1212
Basic:
1313
```yaml
1414
actions:
15-
- uses: actions/checkout@latest
16-
- uses: actions/setup-go@latest
15+
- uses: actions/checkout@master
16+
- uses: actions/setup-go@master
1717
with:
1818
version: 1.9.3 // The Go version to download (if necessary) and use.
1919
- run: go run hello.go
@@ -28,9 +28,9 @@ jobs:
2828
go: [ 1.8, 1.9.3, 1.10 ]
2929
name: Go ${{ matrix.go }} sample
3030
actions:
31-
- uses: actions/checkout@latest
31+
- uses: actions/checkout@master
3232
- name: Setup go
33-
uses: actions/setup-go@latest
33+
uses: actions/setup-go@master
3434
with:
3535
version: ${{ matrix.go }}
3636
- run: go run hello.go

0 commit comments

Comments
 (0)