Skip to content

Commit 21a9745

Browse files
Upgrade Google Cloud Go packages in go.sum
Numerous Google Cloud Go packages have been upgraded to their latest versions in the go.sum dependencies file. This enhances the codebase with the latest features, improvements, and bug fixes offered by these packages. It's part of an effort to keep the project's dependencies up to date and ensure the application runs optimally with the latest available resources. Signed-off-by: Aurelian Shuttleworth <aurelian@shuttleworth.tech>
1 parent 577d2c8 commit 21a9745

File tree

3 files changed

+904
-37
lines changed

3 files changed

+904
-37
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# You may obtain a copy of the License at the LICENSE file in
77
# the root directory of this source tree.
88

9-
FROM golang:1.18.3-alpine AS builder
9+
FROM golang:1.18.4-alpine AS builder
1010

1111
RUN apk add --update --no-cache make
1212

@@ -21,7 +21,7 @@ RUN make build
2121

2222
################
2323

24-
FROM alpine:3.16.1
24+
FROM alpine:3.18.4
2525

2626
COPY --from=builder /go/src/terraform-docs/bin/linux-amd64/terraform-docs /usr/local/bin/
2727

go.mod

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/BurntSushi/toml v1.2.0
77
github.com/Masterminds/sprig/v3 v3.2.2
88
github.com/hashicorp/go-hclog v1.2.2
9-
github.com/hashicorp/go-plugin v1.4.4
9+
github.com/hashicorp/go-plugin v1.5.2
1010
github.com/hashicorp/go-version v1.6.0
1111
github.com/hashicorp/hcl/v2 v2.13.0
1212
github.com/iancoleman/orderedmap v0.2.0
@@ -15,7 +15,7 @@ require (
1515
github.com/spf13/cobra v1.5.0
1616
github.com/spf13/pflag v1.0.5
1717
github.com/spf13/viper v1.12.0
18-
github.com/stretchr/testify v1.8.0
18+
github.com/stretchr/testify v1.8.3
1919
github.com/terraform-docs/terraform-config-inspect v0.0.0-20210728164355-9c1f178932fa
2020
gopkg.in/yaml.v3 v3.0.1
2121
honnef.co/go/tools v0.3.2
@@ -24,7 +24,6 @@ require (
2424

2525
require (
2626
github.com/agext/levenshtein v1.2.3 // indirect
27-
github.com/google/uuid v1.3.0 // indirect
2827
github.com/hashicorp/yamux v0.1.1 // indirect
2928
github.com/huandu/xstrings v1.3.2 // indirect
3029
github.com/mitchellh/copystructure v1.2.0 // indirect
@@ -33,13 +32,10 @@ require (
3332
github.com/oklog/run v1.1.0 // indirect
3433
github.com/pelletier/go-toml/v2 v2.0.2 // indirect
3534
github.com/shopspring/decimal v1.3.1 // indirect
36-
github.com/spf13/afero v1.9.2 // indirect
3735
github.com/subosito/gotenv v1.4.0 // indirect
3836
github.com/zclconf/go-cty v1.10.0 // indirect
39-
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
4037
golang.org/x/exp/typeparams v0.0.0-20220722155223-a9213eeb770e // indirect
41-
golang.org/x/net v0.0.0-20220725212005-46097bf591d3 // indirect
42-
golang.org/x/tools v0.1.11 // indirect
43-
google.golang.org/genproto v0.0.0-20220725144611-272f38e5d71b // indirect
38+
golang.org/x/net v0.17.0 // indirect
39+
google.golang.org/grpc v1.56.3 // indirect
4440
gopkg.in/ini.v1 v1.66.6 // indirect
4541
)

0 commit comments

Comments
 (0)