-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(fips): add gcc-aarch64-linux-gnu to Dockerfile
- Loading branch information
1 parent
0f9db24
commit e82cc25
Showing
3 changed files
with
118 additions
and
520 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,47 @@ | ||
module main | ||
|
||
go 1.19 | ||
go 1.23 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2 v1.16.4 | ||
github.com/aws/aws-sdk-go-v2/config v1.15.9 | ||
github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.15.7 | ||
github.com/aws/aws-sdk-go-v2/service/ecs v1.18.7 | ||
github.com/aws/aws-sdk-go-v2 v1.32.7 | ||
github.com/aws/aws-sdk-go-v2/config v1.28.7 | ||
github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.45.1 | ||
github.com/aws/aws-sdk-go-v2/service/ecs v1.53.1 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/spf13/viper v1.12.0 | ||
github.com/spf13/viper v1.19.0 | ||
) | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2/credentials v1.12.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.11 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.12 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.11.7 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.16.6 // indirect | ||
github.com/aws/smithy-go v1.11.2 // indirect | ||
github.com/fsnotify/fsnotify v1.5.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.7 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.17.48 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.22 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.26 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.26 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.7 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.24.8 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.7 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.33.3 // indirect | ||
github.com/aws/smithy-go v1.22.1 // indirect | ||
github.com/fsnotify/fsnotify v1.8.0 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/magiconair/properties v1.8.6 // indirect | ||
github.com/magiconair/properties v1.8.9 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/pelletier/go-toml v1.9.5 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.1 // indirect | ||
github.com/spf13/afero v1.8.2 // indirect | ||
github.com/spf13/cast v1.5.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/pelletier/go-toml/v2 v2.2.3 // indirect | ||
github.com/sagikazarmark/locafero v0.6.0 // indirect | ||
github.com/sagikazarmark/slog-shim v0.1.0 // indirect | ||
github.com/sourcegraph/conc v0.3.0 // indirect | ||
github.com/spf13/afero v1.11.0 // indirect | ||
github.com/spf13/cast v1.7.1 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/subosito/gotenv v1.3.0 // indirect | ||
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
gopkg.in/ini.v1 v1.66.4 // indirect | ||
github.com/subosito/gotenv v1.6.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67 // indirect | ||
golang.org/x/sys v0.28.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.