File tree Expand file tree Collapse file tree 25 files changed +98
-98
lines changed
github.com/arduino/iot-client-go Expand file tree Collapse file tree 25 files changed +98
-98
lines changed Original file line number Diff line number Diff line change 3434
3535 steps :
3636 - name : Checkout repository
37- uses : actions/checkout@v3
37+ uses : actions/checkout@v4
3838
3939 - name : Install licensed
4040 uses : jonabc/setup-licensed@v1
4343 version : 3.x
4444
4545 - name : Install Go
46- uses : actions/setup-go@v3
46+ uses : actions/setup-go@v5
4747 with :
4848 go-version : ${{ env.GO_VERSION }}
4949
8181
8282 steps :
8383 - name : Checkout repository
84- uses : actions/checkout@v3
84+ uses : actions/checkout@v4
8585
8686 - name : Install licensed
8787 uses : jonabc/setup-licensed@v1
9090 version : 3.x
9191
9292 - name : Install Go
93- uses : actions/setup-go@v3
93+ uses : actions/setup-go@v5
9494 with :
9595 go-version : ${{ env.GO_VERSION }}
9696
Original file line number Diff line number Diff line change 2121
2222 steps :
2323 - name : Checkout repository
24- uses : actions/checkout@v3
24+ uses : actions/checkout@v4
2525 with :
2626 fetch-depth : 0
2727
5555
5656 steps :
5757 - name : Checkout repository
58- uses : actions/checkout@v3
58+ uses : actions/checkout@v4
5959
6060 - name : Download artifacts
6161 uses : actions/download-artifact@v4
Original file line number Diff line number Diff line change @@ -75,10 +75,10 @@ jobs:
7575
7676 steps :
7777 - name : Checkout repository
78- uses : actions/checkout@v3
78+ uses : actions/checkout@v4
7979
8080 - name : Install Go
81- uses : actions/setup-go@v3
81+ uses : actions/setup-go@v5
8282 with :
8383 go-version : ${{ env.GO_VERSION }}
8484
Original file line number Diff line number Diff line change 11---
2- name : github.com/arduino/iot-client-go/v2
3- version : v2 .0.3
2+ name : github.com/arduino/iot-client-go/v3
3+ version : v3 .0.1
44type : go
55summary :
6- homepage : https://pkg.go.dev/github.com/arduino/iot-client-go/v2
6+ homepage : https://pkg.go.dev/github.com/arduino/iot-client-go/v3
77license : apache-2.0
88licenses :
99- sources : LICENSE
Original file line number Diff line number Diff line change 11---
22name : golang.org/x/oauth2
3- version : v0.21 .0
3+ version : v0.23 .0
44type : go
55summary : Package oauth2 provides support for making OAuth2 authorized and authenticated
66 HTTP requests, as specified in RFC 6749.
@@ -9,7 +9,7 @@ license: bsd-3-clause
99licenses :
1010- sources : LICENSE
1111 text : |
12- Copyright (c) 2009 The Go Authors. All rights reserved .
12+ Copyright 2009 The Go Authors.
1313
1414 Redistribution and use in source and binary forms, with or without
1515 modification, are permitted provided that the following conditions are
@@ -21,7 +21,7 @@ licenses:
2121 copyright notice, this list of conditions and the following disclaimer
2222 in the documentation and/or other materials provided with the
2323 distribution.
24- * Neither the name of Google Inc. nor the names of its
24+ * Neither the name of Google LLC nor the names of its
2525 contributors may be used to endorse or promote products derived from
2626 this software without specific prior written permission.
2727
Original file line number Diff line number Diff line change 11---
22name : golang.org/x/oauth2/clientcredentials
3- version : v0.21 .0
3+ version : v0.23 .0
44type : go
55summary : Package clientcredentials implements the OAuth2.0 "client credentials" token
66 flow, also known as the "two-legged OAuth 2.0".
77homepage : https://pkg.go.dev/golang.org/x/oauth2/clientcredentials
88license : bsd-3-clause
99licenses :
10- - sources : oauth2@v0.21 .0/LICENSE
10+ - sources : oauth2@v0.23 .0/LICENSE
1111 text : |
12- Copyright (c) 2009 The Go Authors. All rights reserved .
12+ Copyright 2009 The Go Authors.
1313
1414 Redistribution and use in source and binary forms, with or without
1515 modification, are permitted provided that the following conditions are
@@ -21,7 +21,7 @@ licenses:
2121 copyright notice, this list of conditions and the following disclaimer
2222 in the documentation and/or other materials provided with the
2323 distribution.
24- * Neither the name of Google Inc. nor the names of its
24+ * Neither the name of Google LLC nor the names of its
2525 contributors may be used to endorse or promote products derived from
2626 this software without specific prior written permission.
2727
Original file line number Diff line number Diff line change 11---
22name : golang.org/x/oauth2/internal
3- version : v0.21 .0
3+ version : v0.23 .0
44type : go
55summary : Package internal contains support packages for oauth2 package.
66homepage : https://pkg.go.dev/golang.org/x/oauth2/internal
77license : bsd-3-clause
88licenses :
9- - sources : oauth2@v0.21 .0/LICENSE
9+ - sources : oauth2@v0.23 .0/LICENSE
1010 text : |
11- Copyright (c) 2009 The Go Authors. All rights reserved .
11+ Copyright 2009 The Go Authors.
1212
1313 Redistribution and use in source and binary forms, with or without
1414 modification, are permitted provided that the following conditions are
@@ -20,7 +20,7 @@ licenses:
2020 copyright notice, this list of conditions and the following disclaimer
2121 in the documentation and/or other materials provided with the
2222 distribution.
23- * Neither the name of Google Inc. nor the names of its
23+ * Neither the name of Google LLC nor the names of its
2424 contributors may be used to endorse or promote products derived from
2525 this software without specific prior written permission.
2626
Original file line number Diff line number Diff line change 1818package dashboard
1919
2020import (
21- iotclient "github.com/arduino/iot-client-go/v2 "
21+ iotclient "github.com/arduino/iot-client-go/v3 "
2222)
2323
2424// DashboardInfo contains the most interesting
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import (
2626 "github.com/arduino/arduino-cloud-cli/arduino/cli"
2727 "github.com/arduino/arduino-cloud-cli/config"
2828 "github.com/arduino/arduino-cloud-cli/internal/iot"
29- iotclient "github.com/arduino/iot-client-go/v2 "
29+ iotclient "github.com/arduino/iot-client-go/v3 "
3030 "github.com/sirupsen/logrus"
3131 "go.bug.st/serial"
3232)
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ package device
1919
2020import (
2121 "github.com/arduino/arduino-cloud-cli/command/tag"
22- iotclient "github.com/arduino/iot-client-go/v2 "
22+ iotclient "github.com/arduino/iot-client-go/v3 "
2323)
2424
2525// DeviceInfo contains the most interesting
You can’t perform that action at this time.
0 commit comments