-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from OpenCHAMI/alovelltroy/build-improvements
chore: update Dockerfile, Goreleaser, and Go modules
- Loading branch information
Showing
4 changed files
with
136 additions
and
105 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
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,59 +1,58 @@ | ||
module github.com/OpenCHAMI/cloud-init | ||
|
||
go 1.21 | ||
go 1.23 | ||
|
||
require ( | ||
github.com/OpenCHAMI/jwtauth/v5 v5.0.0-20240321222802-e6cb468a2a18 | ||
github.com/OpenCHAMI/smd/v2 v2.12.15 | ||
github.com/OpenCHAMI/smd/v2 v2.17.7 | ||
github.com/go-chi/chi/v5 v5.1.0 | ||
github.com/go-chi/render v1.0.3 | ||
github.com/lestrrat-go/jwx/v2 v2.1.1 | ||
github.com/lestrrat-go/jwx/v2 v2.1.2 | ||
github.com/openchami/chi-middleware/auth v0.0.0-20240812224658-b16b83c70700 | ||
github.com/openchami/chi-middleware/log v0.0.0-20240812224658-b16b83c70700 | ||
github.com/rs/zerolog v1.33.0 | ||
) | ||
|
||
require ( | ||
github.com/ajg/form v1.5.1 // indirect | ||
github.com/cenkalti/backoff/v4 v4.3.0 // indirect | ||
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect | ||
github.com/go-jose/go-jose/v4 v4.0.4 // indirect | ||
github.com/goccy/go-json v0.10.3 // indirect | ||
github.com/lestrrat-go/blackmagic v1.0.2 // indirect | ||
github.com/lestrrat-go/httpcc v1.0.1 // indirect | ||
github.com/lestrrat-go/httprc v1.0.6 // indirect | ||
github.com/lestrrat-go/iter v1.0.2 // indirect | ||
github.com/lestrrat-go/option v1.0.1 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.19 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/segmentio/asm v1.2.0 // indirect | ||
golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 // indirect | ||
) | ||
|
||
require ( | ||
github.com/Cray-HPE/hms-base v1.15.1 // indirect | ||
github.com/Cray-HPE/hms-certs v1.4.0 // indirect | ||
github.com/Cray-HPE/hms-securestorage v1.13.0 // indirect | ||
github.com/cenkalti/backoff/v3 v3.2.2 // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/go-jose/go-jose/v3 v3.0.0 // indirect | ||
github.com/fsnotify/fsnotify v1.8.0 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.4 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect | ||
github.com/hashicorp/go-rootcerts v1.0.2 // indirect | ||
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.7 // indirect | ||
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.8 // indirect | ||
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect | ||
github.com/hashicorp/go-sockaddr v1.0.2 // indirect | ||
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect | ||
github.com/hashicorp/vault/api v1.9.2 // indirect | ||
github.com/hashicorp/go-sockaddr v1.0.7 // indirect | ||
github.com/hashicorp/hcl v1.0.1-vault-7 // indirect | ||
github.com/hashicorp/vault/api v1.15.0 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/ryanuber/go-glob v1.0.0 // indirect | ||
github.com/samber/lo v1.39.0 | ||
github.com/samber/lo v1.47.0 | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
golang.org/x/crypto v0.25.0 // indirect | ||
golang.org/x/net v0.21.0 // indirect | ||
golang.org/x/sys v0.22.0 // indirect | ||
golang.org/x/text v0.16.0 // indirect | ||
golang.org/x/time v0.3.0 // indirect | ||
golang.org/x/crypto v0.29.0 // indirect | ||
golang.org/x/net v0.31.0 // indirect | ||
golang.org/x/sys v0.27.0 // indirect | ||
golang.org/x/text v0.20.0 // indirect | ||
golang.org/x/time v0.8.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) |
Oops, something went wrong.