Skip to content
This repository has been archived by the owner on Jun 11, 2023. It is now read-only.

Commit

Permalink
Merge pull request #47 from embano1/deps
Browse files Browse the repository at this point in the history
Upgrade to Go v1.18 for deps
  • Loading branch information
embano1 authored Jun 3, 2023
2 parents 0647c8a + 9f94eb7 commit 11fc265
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 1,000 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Code Linting
strategy:
matrix:
go-version: ["1.17"] # >=1.16 required due to io.ReadAll()
go-version: ["1.19"] # >=1.16 required due to io.ReadAll()
platform: ["ubuntu-latest"]

runs-on: ${{ matrix.platform }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Go Tests
strategy:
matrix:
go-version: ["1.17"]
go-version: ["1.19"]
platform: ["ubuntu-latest"]

runs-on: ${{ matrix.platform }}
Expand Down
12 changes: 6 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,26 @@ module github.com/embano1/vsphere-event-streaming
go 1.17

require (
github.com/cloudevents/sdk-go/v2 v2.13.0
github.com/cloudevents/sdk-go/v2 v2.14.0
github.com/embano1/memlog v0.4.4
github.com/embano1/vsphere v0.2.5
github.com/google/go-cmp v0.5.9
github.com/google/uuid v1.3.0
github.com/julienschmidt/httprouter v1.3.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/vmware/govmomi v0.30.2
github.com/vmware/govmomi v0.30.4
go.uber.org/zap v1.24.0
golang.org/x/sync v0.1.0
golang.org/x/sync v0.2.0
gotest.tools/v3 v3.4.0
)

require (
github.com/benbjohnson/clock v1.3.0 // indirect
github.com/benbjohnson/clock v1.3.5 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.9.0 // indirect
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
)
Loading

0 comments on commit 11fc265

Please sign in to comment.