We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c80c1a commit 89f878aCopy full SHA for 89f878a
.github/workflows/build.yml
@@ -13,7 +13,8 @@ jobs:
13
name: Setup go
14
uses: actions/setup-go@v3
15
with:
16
- go-version: 1.19
+ # Note: Using "go-version: 1.20" incorrectly matches with go version 1.2 (see https://github.com/actions/setup-go/issues/326)
17
+ go-version: 1.20.*
18
check-latest: true
19
20
# Configure git to keep LF on Windows, since linters such as goimports assumes this.
go.mod
@@ -1,5 +1,5 @@
1
module github.com/albertony/npiperelay
2
3
-go 1.19
+go 1.20
4
5
require golang.org/x/sys v0.4.0
0 commit comments