-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: upgrade to go 1.21 and dependencies update
- Loading branch information
Showing
4 changed files
with
461 additions
and
792 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,4 +1,4 @@ | ||
FROM golang:1.17 as builder | ||
FROM golang:1.21 as builder | ||
WORKDIR /opt/build | ||
COPY . . | ||
RUN make build | ||
|
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,4 +1,4 @@ | ||
FROM golang:1.17 | ||
FROM golang:1.21 | ||
WORKDIR /opt/build | ||
COPY . . | ||
RUN make install | ||
|
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,114 +1,117 @@ | ||
module github.com/camptocamp/terraboard | ||
|
||
go 1.17 | ||
go 1.21.1 | ||
|
||
toolchain go1.21.3 | ||
|
||
require ( | ||
cloud.google.com/go/storage v1.22.1 | ||
cloud.google.com/go/storage v1.33.0 | ||
github.com/DATA-DOG/go-sqlmock v1.5.0 | ||
github.com/agext/levenshtein v1.2.3 | ||
github.com/apparentlymart/go-cidr v1.1.0 | ||
github.com/apparentlymart/go-dump v0.0.0-20190214190832-042adf3cf4a0 | ||
github.com/apparentlymart/go-versions v1.0.1 | ||
github.com/aws/aws-sdk-go v1.44.25 | ||
github.com/apparentlymart/go-versions v1.0.2 | ||
github.com/aws/aws-sdk-go v1.46.4 | ||
github.com/bmatcuk/doublestar v1.3.4 | ||
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f | ||
github.com/coreos/pkg v0.0.0-20230601102743-20bbbf26f4d8 | ||
github.com/davecgh/go-spew v1.1.1 | ||
github.com/go-test/deep v1.0.3 | ||
github.com/google/go-cmp v0.5.8 | ||
github.com/google/uuid v1.3.0 | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/google/uuid v1.3.1 | ||
github.com/gorilla/mux v1.8.0 | ||
github.com/gusaul/go-dynamock v0.0.0-20210107061312-3e989056e1e6 | ||
github.com/hashicorp/errwrap v1.1.0 | ||
github.com/hashicorp/go-cleanhttp v0.5.2 | ||
github.com/hashicorp/go-getter v1.6.1 | ||
github.com/hashicorp/go-hclog v1.2.0 | ||
github.com/hashicorp/go-getter v1.7.3 | ||
github.com/hashicorp/go-hclog v1.5.0 | ||
github.com/hashicorp/go-multierror v1.1.1 | ||
github.com/hashicorp/go-retryablehttp v0.7.1 | ||
github.com/hashicorp/go-tfe v1.2.0 | ||
github.com/hashicorp/go-retryablehttp v0.7.4 | ||
github.com/hashicorp/go-tfe v1.37.0 | ||
github.com/hashicorp/go-uuid v1.0.3 | ||
github.com/hashicorp/go-version v1.5.0 | ||
github.com/hashicorp/hcl/v2 v2.12.0 | ||
github.com/hashicorp/terraform v1.2.1 | ||
github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 | ||
github.com/hashicorp/go-version v1.6.0 | ||
github.com/hashicorp/hcl/v2 v2.19.1 | ||
github.com/hashicorp/terraform v1.6.2 | ||
github.com/hashicorp/terraform-svchost v0.1.1 | ||
github.com/jessevdk/go-flags v1.5.0 | ||
github.com/machinebox/graphql v0.2.2 | ||
github.com/mitchellh/copystructure v1.2.0 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/pmezard/go-difflib v1.0.0 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/spf13/afero v1.2.2 | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/swaggo/http-swagger v1.2.8 | ||
github.com/swaggo/swag v1.8.2 | ||
github.com/zclconf/go-cty v1.10.0 | ||
github.com/zclconf/go-cty-yaml v1.0.2 | ||
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e | ||
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 | ||
golang.org/x/net v0.0.0-20220531201128-c960675eff93 | ||
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a | ||
golang.org/x/text v0.3.7 | ||
google.golang.org/api v0.81.0 | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/spf13/afero v1.10.0 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/swaggo/http-swagger v1.3.4 | ||
github.com/swaggo/swag v1.16.2 | ||
github.com/zclconf/go-cty v1.14.1 | ||
github.com/zclconf/go-cty-yaml v1.0.3 | ||
golang.org/x/crypto v0.14.0 | ||
golang.org/x/mod v0.13.0 | ||
golang.org/x/net v0.17.0 | ||
golang.org/x/sys v0.13.0 | ||
golang.org/x/text v0.13.0 | ||
google.golang.org/api v0.148.0 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
gorm.io/datatypes v1.0.6 | ||
gorm.io/driver/postgres v1.3.7 | ||
gorm.io/gorm v1.23.5 | ||
gorm.io/datatypes v1.2.0 | ||
gorm.io/driver/postgres v1.5.4 | ||
gorm.io/gorm v1.25.5 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.102.0 // indirect | ||
cloud.google.com/go/compute v1.6.1 // indirect | ||
cloud.google.com/go/iam v0.3.0 // indirect | ||
cloud.google.com/go v0.110.9 // indirect | ||
cloud.google.com/go/compute v1.23.1 // indirect | ||
cloud.google.com/go/compute/metadata v0.2.3 // indirect | ||
cloud.google.com/go/iam v1.1.3 // indirect | ||
github.com/KyleBanks/depth v1.2.1 // indirect | ||
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect | ||
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect | ||
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect | ||
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf // indirect | ||
github.com/fatih/color v1.13.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/jsonreference v0.20.0 // indirect | ||
github.com/go-openapi/spec v0.20.6 // indirect | ||
github.com/go-openapi/swag v0.21.1 // indirect | ||
github.com/go-sql-driver/mysql v1.6.0 // indirect | ||
github.com/fatih/color v1.15.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.20.0 // indirect | ||
github.com/go-openapi/jsonreference v0.20.2 // indirect | ||
github.com/go-openapi/spec v0.20.9 // indirect | ||
github.com/go-openapi/swag v0.22.4 // indirect | ||
github.com/go-sql-driver/mysql v1.7.1 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/go-querystring v1.1.0 // indirect | ||
github.com/googleapis/gax-go/v2 v2.4.0 // indirect | ||
github.com/googleapis/go-type-adapters v1.0.0 // indirect | ||
github.com/google/s2a-go v0.1.7 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect | ||
github.com/googleapis/gax-go/v2 v2.12.0 // indirect | ||
github.com/hashicorp/go-safetemp v1.0.0 // indirect | ||
github.com/hashicorp/go-slug v0.8.1 // indirect | ||
github.com/hashicorp/jsonapi v0.0.0-20210826224640-ee7dae0fb22d // indirect | ||
github.com/jackc/chunkreader/v2 v2.0.1 // indirect | ||
github.com/jackc/pgconn v1.12.1 // indirect | ||
github.com/jackc/pgio v1.0.0 // indirect | ||
github.com/hashicorp/go-slug v0.12.2 // indirect | ||
github.com/hashicorp/jsonapi v0.0.0-20231023233540-b6a3d216e521 // indirect | ||
github.com/jackc/pgpassfile v1.0.0 // indirect | ||
github.com/jackc/pgproto3/v2 v2.3.0 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect | ||
github.com/jackc/pgtype v1.11.0 // indirect | ||
github.com/jackc/pgx/v4 v4.16.1 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect | ||
github.com/jackc/pgx/v5 v5.4.3 // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/jinzhu/now v1.1.5 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/klauspost/compress v1.15.5 // indirect | ||
github.com/klauspost/compress v1.17.2 // indirect | ||
github.com/kylelemons/godebug v1.1.0 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/matryer/is v1.4.0 // indirect | ||
github.com/mattn/go-colorable v0.1.12 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mitchellh/go-testing-interface v1.14.1 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.1 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.2 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/swaggo/files v0.0.0-20210815190702-a29dd2bc99b2 // indirect | ||
github.com/ulikunitz/xz v0.5.10 // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
golang.org/x/oauth2 v0.0.0-20220524215830-622c5d57e401 // indirect | ||
golang.org/x/time v0.0.0-20220411224347-583f2d630306 // indirect | ||
golang.org/x/tools v0.1.11-0.20220316014157-77aa08bb151a // indirect | ||
golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20220531173845-685668d2de03 // indirect | ||
google.golang.org/grpc v1.47.0 // indirect | ||
google.golang.org/protobuf v1.28.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
gorm.io/driver/mysql v1.3.4 // indirect | ||
github.com/rogpeppe/go-internal v1.11.0 // indirect | ||
github.com/swaggo/files v1.0.1 // indirect | ||
github.com/ulikunitz/xz v0.5.11 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
golang.org/x/oauth2 v0.13.0 // indirect | ||
golang.org/x/sync v0.4.0 // indirect | ||
golang.org/x/time v0.3.0 // indirect | ||
golang.org/x/tools v0.14.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b // indirect | ||
google.golang.org/grpc v1.59.0 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
gorm.io/driver/mysql v1.5.2 // indirect | ||
) |
Oops, something went wrong.