File tree 6 files changed +12
-7
lines changed
6 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Check Go Dependencies
3
3
4
4
env :
5
5
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
6
- GO_VERSION : " 1.16 "
6
+ GO_VERSION : " 1.19 "
7
7
8
8
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
9
9
on :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Check Go
3
3
4
4
env :
5
5
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
6
- GO_VERSION : " 1.16 "
6
+ GO_VERSION : " 1.19 "
7
7
8
8
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
9
9
on :
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ version: "3"
19
19
20
20
vars :
21
21
CONTAINER : " docker.elastic.co/beats-dev/golang-crossbuild"
22
- GO_VERSION : " 1.16.4 "
22
+ GO_VERSION : " 1.19.3 "
23
23
24
24
tasks :
25
25
Windows_32bit :
@@ -184,7 +184,7 @@ tasks:
184
184
#
185
185
# Until there is a fix released we must use a recent gcc for Linux_ARMv6 build, so for this
186
186
# build we select the debian10 based container.
187
- CONTAINER_TAG : " {{.GO_VERSION}}-armel-debian10 "
187
+ CONTAINER_TAG : " {{.GO_VERSION}}-armel-debian9 "
188
188
PACKAGE_PLATFORM : " Linux_ARMv6"
189
189
PACKAGE_NAME : " {{.PROJECT_NAME}}_{{.VERSION}}_{{.PACKAGE_PLATFORM}}.tar.gz"
190
190
Original file line number Diff line number Diff line change 1
1
module github.com/arduino/serial-discovery
2
2
3
- go 1.16
3
+ go 1.19
4
4
5
5
require (
6
6
github.com/arduino/go-properties-orderedmap v1.7.1
@@ -9,3 +9,9 @@ require (
9
9
go.bug.st/serial v1.5.0
10
10
golang.org/x/sys v0.5.0
11
11
)
12
+
13
+ require (
14
+ github.com/arduino/go-paths-helper v1.8.0 // indirect
15
+ github.com/creack/goselect v0.1.2 // indirect
16
+ github.com/pkg/errors v0.9.1 // indirect
17
+ )
Original file line number Diff line number Diff line change @@ -477,7 +477,6 @@ golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBc
477
477
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
478
478
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
479
479
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
480
- golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
481
480
golang.org/x/sys v0.5.0 h1:MUK/U/4lj1t1oPg0HfuXDN/Z1wv31ZJ/YcPiGccS4DU =
482
481
golang.org/x/sys v0.5.0 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
483
482
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 /go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo =
Original file line number Diff line number Diff line change 15
15
// a commercial license, send an email to [email protected] .
16
16
//
17
17
18
- // + build !linux, !windows, !darwin
18
+ //go: build !linux && !windows && !darwin
19
19
20
20
package sync
21
21
You can’t perform that action at this time.
0 commit comments