Skip to content
Open
Show file tree
Hide file tree
Changes from 8 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 .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ orbs:
parameters:
go_version:
type: string
default: "1.21.11"
default: "1.23.6"

sensu_go_build_env: &sensu_go_build_env
docker:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/static-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
fetch-depth: 1
- uses: WillAbides/[email protected]
with:
go-version: "1.21.x"
go-version: "1.23.x"
- uses: dominikh/[email protected]
with:
version: "2023.1.6"
install-go: false
cache-key: "1.21.x"
cache-key: "1.23.x"
env:
GO_VERSION: 1.21.3
GO_VERSION: 1.23.6
18 changes: 8 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
module github.com/sensu/sensu-go

go 1.21.11
toolchain go1.22.5
go 1.23.6

require (
github.com/AlecAivazis/survey/v2 v2.2.14
Expand All @@ -14,11 +13,10 @@ require (
github.com/echlebek/timeproxy v1.0.0
github.com/emicklei/proto v1.1.0
github.com/evanphx/json-patch/v5 v5.1.0
github.com/frankban/quicktest v1.7.2 // indirect
github.com/ghodss/yaml v1.0.0
github.com/go-resty/resty/v2 v2.5.0
github.com/gogo/protobuf v1.3.2
github.com/golang-jwt/jwt/v4 v4.5.0
github.com/golang-jwt/jwt/v4 v4.5.1
github.com/golang/protobuf v1.5.4
github.com/golang/snappy v0.0.4
github.com/google/uuid v1.6.0
Expand All @@ -36,7 +34,7 @@ require (
github.com/libp2p/go-sockaddr v0.1.0 // indirect
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b
github.com/mholt/archiver/v3 v3.3.1-0.20191129193105-44285f7ed244
github.com/mholt/archiver/v3 v3.5.1
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/hashstructure v1.0.0
github.com/mitchellh/mapstructure v1.1.2
Expand Down Expand Up @@ -64,7 +62,7 @@ require (
go.uber.org/zap v1.26.0
golang.org/x/crypto v0.33.0
golang.org/x/mod v0.17.0
golang.org/x/net v0.32.0
golang.org/x/net v0.33.0
golang.org/x/sys v0.30.0
golang.org/x/time v0.9.0
google.golang.org/grpc v1.70.0
Expand Down Expand Up @@ -108,7 +106,7 @@ require (
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/coreos/go-semver v0.3.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dsnet/compress v0.0.1 // indirect
github.com/dsnet/compress v0.0.2-0.20210315054119-f66993602bf5 // indirect
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
Expand All @@ -120,18 +118,18 @@ require (
github.com/json-iterator/go v1.1.12 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/klauspost/compress v1.15.9 // indirect
github.com/klauspost/pgzip v1.2.1 // indirect
github.com/klauspost/pgzip v1.2.5 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/nwaples/rardecode v1.0.0 // indirect
github.com/nwaples/rardecode v1.1.0 // indirect
github.com/opentracing/opentracing-go v1.1.0 // indirect
github.com/pelletier/go-toml v1.2.0 // indirect
github.com/pierrec/lz4/v3 v3.0.1 // indirect
github.com/pierrec/lz4/v4 v4.1.15 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
Expand Down
Loading
Loading