-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated go to 1.23 * Changed docker-compose to docker compose * Updated hms go dependencies * Removed -i option from go build CASMHMS-6317
- Loading branch information
Showing
61 changed files
with
376 additions
and
923 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.19.0 | ||
1.20.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,59 @@ | ||
module github.com/Cray-HPE/hms-scsd | ||
|
||
go 1.16 | ||
go 1.23 | ||
|
||
require ( | ||
github.com/Cray-HPE/hms-base v1.15.1 | ||
github.com/Cray-HPE/hms-certs v1.4.0 | ||
github.com/Cray-HPE/hms-compcredentials v1.11.3 | ||
github.com/Cray-HPE/hms-securestorage v1.13.0 | ||
github.com/Cray-HPE/hms-certs v1.5.0 | ||
github.com/Cray-HPE/hms-compcredentials v1.12.0 | ||
github.com/Cray-HPE/hms-securestorage v1.14.0 | ||
github.com/Cray-HPE/hms-trs-app-api v1.6.2 | ||
github.com/Cray-HPE/hms-xname v1.0.2 | ||
github.com/Cray-HPE/hms-xname v1.4.0 | ||
github.com/gorilla/mux v1.8.0 | ||
github.com/sirupsen/logrus v1.8.1 | ||
) | ||
|
||
require ( | ||
github.com/Cray-HPE/hms-trs-kafkalib v1.5.2 // indirect | ||
github.com/Shopify/sarama v1.24.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/eapache/go-resiliency v1.1.0 // indirect | ||
github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 // indirect | ||
github.com/eapache/queue v1.1.0 // indirect | ||
github.com/frankban/quicktest v1.7.3 // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/golang/snappy v0.0.1 // indirect | ||
github.com/google/go-cmp v0.5.1 // indirect | ||
github.com/gorilla/mux v1.8.0 | ||
github.com/google/uuid v1.1.1 // indirect | ||
github.com/hashicorp/errwrap v1.0.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect | ||
github.com/hashicorp/go-hclog v0.14.1 // indirect | ||
github.com/hashicorp/go-multierror v1.1.0 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.0 // indirect | ||
github.com/hashicorp/go-rootcerts v1.0.1 // indirect | ||
github.com/hashicorp/go-sockaddr v1.0.2 // indirect | ||
github.com/hashicorp/go-uuid v1.0.1 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/hashicorp/vault/api v1.0.4 // indirect | ||
github.com/hashicorp/vault/sdk v0.1.13 // indirect | ||
github.com/jcmturner/gofork v0.0.0-20190328161633-dc7c13fece03 // indirect | ||
github.com/klauspost/compress v1.8.2 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/mapstructure v1.3.0 // indirect | ||
github.com/pierrec/lz4 v2.4.1+incompatible // indirect | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a // indirect | ||
github.com/ryanuber/go-glob v1.0.0 // indirect | ||
github.com/stretchr/testify v1.5.1 // indirect | ||
golang.org/x/crypto v0.0.0-20200709230013-948cd5f35899 // indirect | ||
golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc // indirect | ||
golang.org/x/sys v0.0.0-20200817155316-9781c653f443 // indirect | ||
golang.org/x/text v0.3.3 // indirect | ||
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
gopkg.in/jcmturner/aescts.v1 v1.0.1 // indirect | ||
gopkg.in/jcmturner/dnsutils.v1 v1.0.1 // indirect | ||
gopkg.in/jcmturner/gokrb5.v7 v7.2.3 // indirect | ||
gopkg.in/jcmturner/rpc.v1 v1.1.0 // indirect | ||
gopkg.in/square/go-jose.v2 v2.3.1 // indirect | ||
gopkg.in/yaml.v2 v2.2.7 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.