Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move to the last Go version #39

Merged
merged 4 commits into from
Dec 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.17.2'
go-version: '1.19.4'
- name: Setup
run: |
go mod download
Expand Down
16 changes: 2 additions & 14 deletions NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ The project maintains all source code repositories in the following GitHub organ

This project makes use of the follow third party projects.

golang/go (1.17.2)
golang/go (1.19.4)

* License: BSD 3-Clause "New" or "Revised" License
* Project: https://github.com/golang/go
* Source: https://github.com/golang/go/releases/tag/go1.17.2
* Source: https://github.com/golang/go/releases/tag/go1.19.4

Jeffail/gabs (2.6.0)

Expand Down Expand Up @@ -142,12 +142,6 @@ google/go-tpm (0.3.2)
* Project: https://github.com/google/go-tpm
* Source: https://github.com/google/go-tpm/releases/tag/v0.3.2

golang.org/x/xerror (0.0.0-20191204190536-9bdfabe68543)

* License: BSD 3-Clause "New" or "Revised" License
* Project: https://github.com/golang/xerrors
* Source: https://github.com/golang/xerrors

golang.org/x/net (0.0.0-20210405180319-a5a99cb37ef4)

* License: BSD 3-Clause "New" or "Revised" License
Expand All @@ -166,12 +160,6 @@ golang.org/x/time (v0.0.0-20190308202827-9d24e82272b4)
* Project: https://github.com/golang/time
* Source: https://github.com/golang/time/tree/9d24e82272b4f38b78bc8cff74fa936d31ccd8ef

github.com/google/go-cmp (v0.5.4)

* License: Licensed under the BSD 3-Clause "New" or "Revised" License
* Project: https://github.com/google/go-cmp
* Source: https://github.com/google/go-cmp/releases/tag/v0.5.4

tevino/abool (2.0.1)

* License: MIT License
Expand Down
2 changes: 1 addition & 1 deletion config/connections.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"github.com/eclipse-kanto/suite-connector/connector"
)

//CreateAzureHubConnection creates the MQTT connection to the remote Azure Iot Hub MQTT broker.
// CreateAzureHubConnection creates the MQTT connection to the remote Azure Iot Hub MQTT broker.
func CreateAzureHubConnection(
settings *AzureSettings, connSettings *AzureConnectionSettings, logger watermill.LoggerAdapter,
) (*connector.MQTTConnection, error) {
Expand Down