We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 706cf65 commit a7fe89aCopy full SHA for a7fe89a
README.md
@@ -12,8 +12,8 @@ See [action.yml](action.yml)
12
Basic:
13
```yaml
14
actions:
15
-- uses: actions/checkout@latest
16
-- uses: actions/setup-go@latest
+- uses: actions/checkout@master
+- uses: actions/setup-go@master
17
with:
18
version: 1.9.3 // The Go version to download (if necessary) and use.
19
- run: go run hello.go
@@ -28,9 +28,9 @@ jobs:
28
go: [ 1.8, 1.9.3, 1.10 ]
29
name: Go ${{ matrix.go }} sample
30
31
- - uses: actions/checkout@latest
+ - uses: actions/checkout@master
32
- name: Setup go
33
- uses: actions/setup-go@latest
+ uses: actions/setup-go@master
34
35
version: ${{ matrix.go }}
36
0 commit comments