Skip to content

Commit db51cb8

Browse files
committed
Update to stable versions of GitHub Actions
1 parent 9c29b9d commit db51cb8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,20 @@ jobs:
1212

1313
steps:
1414
- name: Set up Go
15-
uses: actions/setup-go@v2-beta
15+
uses: actions/setup-go@v2
1616
with:
1717
go-version: '^1.7'
1818

1919
- name: Check out code
20-
uses: actions/checkout@9a3a9ade
20+
uses: actions/checkout@v2
2121
with:
2222
submodules: true
2323

2424
- name: Clean up extra files
2525
run: rm ./testcases/*.go
26+
27+
- name: Download deps
28+
run: go mod download
2629

2730
- name: Run golangci-lint
2831
uses: actions-contrib/golangci-lint@v1
@@ -31,9 +34,6 @@ jobs:
3134
with:
3235
golangci_lint_version: 'v1.23.6'
3336

34-
- name: Download deps
35-
run: go mod download
36-
3737
- name: Run tests
3838
run: go test -race -v ./...
3939

0 commit comments

Comments
 (0)