Skip to content

Commit 42aa6b2

Browse files
committed
Fix ci
1 parent 1290614 commit 42aa6b2

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Checkout code
1212
uses: actions/checkout@master
1313
- name: Setup Go
14-
uses: actions/setup-go@v1
14+
uses: actions/setup-go@v2
1515
with:
1616
go-version: 1.x
1717
- name: Build

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
GO111MODULE: "on"
1010
steps:
1111
- name: Set up Go 1.13
12-
uses: actions/setup-go@v1
12+
uses: actions/setup-go@v2
1313
with:
1414
go-version: 1.13
1515
id: go

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,9 @@ jobs:
1313
- name: Checkout code
1414
uses: actions/checkout@master
1515
- name: Setup Go
16-
uses: actions/setup-go@v1
16+
uses: actions/setup-go@v2
1717
with:
1818
go-version: 1.x
19-
- name: Add $GOPATH/bin to $PATH
20-
run: echo "::add-path::$(go env GOPATH)/bin"
2119
- name: Cross build
2220
run: make cross
2321
- name: Create Release

0 commit comments

Comments
 (0)