Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 958dc1f

Browse files
committedMar 8, 2023
build: bump to go 1.17
1 parent eed00dd commit 958dc1f

File tree

5 files changed

+73
-15
lines changed

5 files changed

+73
-15
lines changed
 

‎.github/workflows/check-dependencies-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Check Dependencies
33

44
env:
55
# See: https://github.com/actions/setup-go/tree/v2#readme
6-
GO_VERSION: "1.16"
6+
GO_VERSION: "1.17"
77

88
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
99
on:

‎.github/workflows/test-go-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Test Go
33

44
env:
55
# See: https://github.com/actions/setup-go/tree/v2#readme
6-
GO_VERSION: "1.16"
6+
GO_VERSION: "1.17"
77

88
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
99
on:

‎DistTasks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ version: "3"
2020

2121
vars:
2222
CONTAINER: "docker.elastic.co/beats-dev/golang-crossbuild"
23-
GO_VERSION: "1.16.4"
23+
GO_VERSION: "1.17"
2424
CHECKSUM_FILE: "{{.VERSION}}-checksums.txt"
2525

2626
tasks:

‎go.mod

+66-10
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,91 @@
11
module github.com/arduino/arduino-cloud-cli
22

3-
go 1.16
3+
go 1.17
44

55
require (
6-
github.com/Microsoft/go-winio v0.5.1 // indirect
76
github.com/antihax/optional v1.0.0
87
github.com/arduino/arduino-cli v0.0.0-20221116144942-76251df9241a
9-
github.com/arduino/board-discovery v0.0.0-20211020061712-fd83c2e3c908 // indirect
108
github.com/arduino/go-paths-helper v1.7.0
119
github.com/arduino/go-win32-utils v0.0.0-20180330194947-ed041402e83b
1210
github.com/arduino/iot-client-go v1.4.4
1311
github.com/gofrs/uuid v4.2.0+incompatible
1412
github.com/google/go-cmp v0.5.6
15-
github.com/h2non/filetype v1.1.3 // indirect
1613
github.com/howeyc/crc16 v0.0.0-20171223171357-2b2a61e366a6
17-
github.com/juju/errors v0.0.0-20210818161939-5560c4c073ff // indirect
18-
github.com/kevinburke/ssh_config v1.1.0 // indirect
1914
github.com/manifoldco/promptui v0.9.0
20-
github.com/oleksandr/bonjour v0.0.0-20210301155756-30f43c61b915 // indirect
21-
github.com/sergi/go-diff v1.2.0 // indirect
2215
github.com/sirupsen/logrus v1.8.1
2316
github.com/spf13/cobra v1.3.0
2417
github.com/spf13/viper v1.10.1
2518
github.com/stretchr/testify v1.8.0
26-
github.com/xanzy/ssh-agent v0.3.1 // indirect
2719
go.bug.st/cleanup v1.0.0
2820
go.bug.st/serial v1.3.3
29-
go.bug.st/serial.v1 v0.0.0-20191202182710-24a6610f0541 // indirect
3021
golang.org/x/crypto v0.7.0
3122
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8
3223
google.golang.org/grpc v1.43.0
3324
gopkg.in/yaml.v3 v3.0.1
3425
gotest.tools v2.2.0+incompatible
3526
)
27+
28+
require (
29+
github.com/Microsoft/go-winio v0.5.1 // indirect
30+
github.com/arduino/board-discovery v0.0.0-20211020061712-fd83c2e3c908 // indirect
31+
github.com/arduino/go-properties-orderedmap v1.7.1 // indirect
32+
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
33+
github.com/cmaglie/pb v1.0.27 // indirect
34+
github.com/codeclysm/cc v1.2.2 // indirect
35+
github.com/codeclysm/extract/v3 v3.0.2 // indirect
36+
github.com/creack/goselect v0.1.2 // indirect
37+
github.com/davecgh/go-spew v1.1.1 // indirect
38+
github.com/emirpasic/gods v1.12.0 // indirect
39+
github.com/fatih/color v1.13.0 // indirect
40+
github.com/fluxio/iohelpers v0.0.0-20160419043813-3a4dd67a94d2 // indirect
41+
github.com/fluxio/multierror v0.0.0-20160419044231-9c68d39025e5 // indirect
42+
github.com/fsnotify/fsnotify v1.5.1 // indirect
43+
github.com/golang/protobuf v1.5.2 // indirect
44+
github.com/h2non/filetype v1.1.3 // indirect
45+
github.com/hashicorp/hcl v1.0.0 // indirect
46+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
47+
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
48+
github.com/josharian/intern v1.0.0 // indirect
49+
github.com/juju/errors v0.0.0-20210818161939-5560c4c073ff // indirect
50+
github.com/kevinburke/ssh_config v1.1.0 // indirect
51+
github.com/leonelquinteros/gotext v1.4.0 // indirect
52+
github.com/magiconair/properties v1.8.5 // indirect
53+
github.com/mailru/easyjson v0.7.7 // indirect
54+
github.com/mattn/go-colorable v0.1.12 // indirect
55+
github.com/mattn/go-isatty v0.0.14 // indirect
56+
github.com/mattn/go-runewidth v0.0.13 // indirect
57+
github.com/miekg/dns v1.1.43 // indirect
58+
github.com/mitchellh/go-homedir v1.1.0 // indirect
59+
github.com/mitchellh/mapstructure v1.4.3 // indirect
60+
github.com/oleksandr/bonjour v0.0.0-20210301155756-30f43c61b915 // indirect
61+
github.com/pelletier/go-toml v1.9.4 // indirect
62+
github.com/pkg/errors v0.9.1 // indirect
63+
github.com/pmezard/go-difflib v1.0.0 // indirect
64+
github.com/pmylund/sortutil v0.0.0-20120526081524-abeda66eb583 // indirect
65+
github.com/rivo/uniseg v0.2.0 // indirect
66+
github.com/sergi/go-diff v1.2.0 // indirect
67+
github.com/smartystreets/goconvey v1.7.2 // indirect
68+
github.com/spf13/afero v1.6.0 // indirect
69+
github.com/spf13/cast v1.4.1 // indirect
70+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
71+
github.com/spf13/pflag v1.0.5 // indirect
72+
github.com/src-d/gcfg v1.4.0 // indirect
73+
github.com/stretchr/objx v0.4.0 // indirect
74+
github.com/subosito/gotenv v1.2.0 // indirect
75+
github.com/xanzy/ssh-agent v0.3.1 // indirect
76+
go.bug.st/downloader/v2 v2.1.1 // indirect
77+
go.bug.st/relaxed-semver v0.9.0 // indirect
78+
go.bug.st/serial.v1 v0.0.0-20191202182710-24a6610f0541 // indirect
79+
golang.org/x/net v0.8.0 // indirect
80+
golang.org/x/sync v0.1.0 // indirect
81+
golang.org/x/sys v0.6.0 // indirect
82+
golang.org/x/text v0.8.0 // indirect
83+
google.golang.org/appengine v1.6.7 // indirect
84+
google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa // indirect
85+
google.golang.org/protobuf v1.27.1 // indirect
86+
gopkg.in/ini.v1 v1.66.2 // indirect
87+
gopkg.in/src-d/go-billy.v4 v4.3.2 // indirect
88+
gopkg.in/src-d/go-git.v4 v4.13.1 // indirect
89+
gopkg.in/warnings.v0 v0.1.2 // indirect
90+
gopkg.in/yaml.v2 v2.4.0 // indirect
91+
)

‎go.sum

+4-2
Original file line numberDiff line numberDiff line change
@@ -455,10 +455,12 @@ github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6Mwd
455455
github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=
456456
github.com/sirupsen/logrus v1.8.1 h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE=
457457
github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=
458-
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM=
459458
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc=
460-
github.com/smartystreets/goconvey v1.6.4 h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s=
459+
github.com/smartystreets/assertions v1.2.0 h1:42S6lae5dvLc7BrLu/0ugRtcFVjoJNMC/N3yZFZkDFs=
460+
github.com/smartystreets/assertions v1.2.0/go.mod h1:tcbTF8ujkAEcZ8TElKY+i30BzYlVhC/LOxJk7iOWnoo=
461461
github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA=
462+
github.com/smartystreets/goconvey v1.7.2 h1:9RBaZCeXEQ3UselpuwUQHltGVXvdwm6cv1hgR6gDIPg=
463+
github.com/smartystreets/goconvey v1.7.2/go.mod h1:Vw0tHAZW6lzCRk3xgdin6fKYcG+G3Pg9vgXWeJpQFMM=
462464
github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=
463465
github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4=
464466
github.com/spf13/afero v1.6.0 h1:xoax2sJ2DT8S8xA2paPFjDCScCNeWsg75VG0DLRreiY=

0 commit comments

Comments
 (0)
Please sign in to comment.