Skip to content
This repository was archived by the owner on Apr 14, 2025. It is now read-only.

Commit 97b4692

Browse files
committed
fix for go version in build/release
1 parent d6c0e95 commit 97b4692

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,18 +86,15 @@ jobs:
8686
runs-on: ubuntu-latest
8787

8888
steps:
89-
- uses: actions/setup-go@v4
90-
with:
91-
go-version: '1.20' # The Go version to download (if necessary) and use.
92-
- run: go version
93-
9489
- uses: actions/checkout@v3
9590
with:
9691
fetch-depth: 0
9792
- run: git fetch --force --tags
93+
9894
- uses: actions/setup-go@v4
9995
with:
100-
go-version: stable
96+
go-version: '1.20'
97+
10198
# More assembly might be required: Docker logins, GPG, etc. It all depends
10299
# on your needs.
103100
- uses: goreleaser/goreleaser-action@v4

0 commit comments

Comments
 (0)