Skip to content

Commit 263c43f

Browse files
committed
update github workflow with fixes from master
1 parent a0b4f39 commit 263c43f

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
steps:
2626
- uses: actions/checkout@v2
2727
with: { fetch-depth: 1 }
28-
- uses: actions/setup-go@v2-beta
28+
- uses: actions/setup-go@v2.1.3
2929
with: { go-version: '1.x' }
3030
- name: Install dependencies
3131
run: go get -u golang.org/x/lint/golint

.github/workflows/test-api.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v2
1919
with: { fetch-depth: 1 }
20-
- uses: actions/setup-go@v2-beta
20+
- uses: actions/setup-go@v2.1.3
2121
with: { go-version: '1.x' }
2222
- run: go version
2323
- name: Increase system limits
@@ -49,7 +49,7 @@ jobs:
4949
steps:
5050
- uses: actions/checkout@v2
5151
with: { fetch-depth: 1 }
52-
- uses: actions/setup-go@v2-beta
52+
- uses: actions/setup-go@v2.1.3
5353
with: { go-version: '1.x' }
5454
- run: go version
5555
- name: Increase system limits

.github/workflows/test-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- uses: actions/checkout@v2
2828
with: { fetch-depth: 1 }
29-
- uses: actions/setup-go@v2-beta
29+
- uses: actions/setup-go@v2.1.3
3030
with: { go-version: '1.x' }
3131
- run: go version
3232
- name: Increase system limits
@@ -52,7 +52,7 @@ jobs:
5252
steps:
5353
- uses: actions/checkout@v2
5454
with: { fetch-depth: 1 }
55-
- uses: actions/setup-go@v2-beta
55+
- uses: actions/setup-go@v2.1.3
5656
with: { go-version: '1.x' }
5757
- run: go version
5858
- name: Increase system limits

.github/workflows/test-unit-tip.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ jobs:
2929
3030
cd src
3131
bash make.bash
32-
33-
echo "::set-env name=GOROOT::$GOROOT"
34-
echo "::add-path::$GOROOT/bin"
32+
echo "GOROOT=$GOROOT" >> $GITHUB_ENV
33+
echo "$GOROOT/bin" >> $GITHUB_PATH
3534
- uses: actions/checkout@v2
3635
with: { fetch-depth: 1 }
3736
- run: go version

.github/workflows/test-unit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
- uses: actions/checkout@v2
3232
with: { fetch-depth: 1 }
33-
- uses: actions/setup-go@v2-beta
33+
- uses: actions/setup-go@v2.1.3
3434
with: { go-version: "${{ matrix.go }}" }
3535
- run: go version
3636
- run: make test-unit race=true
@@ -46,7 +46,7 @@ jobs:
4646
steps:
4747
- uses: actions/checkout@v2
4848
with: { fetch-depth: 1 }
49-
- uses: actions/setup-go@v2-beta
49+
- uses: actions/setup-go@v2.1.3
5050
with: { go-version: '1.x' }
5151
- run: go version
5252
- run: make test-bench

0 commit comments

Comments
 (0)