Skip to content

Commit e6c9719

Browse files
authored
Make Dependabot happy (#33)
* Make dependabot happy * Downgrade go-git due to go-git/go-git#548
1 parent c5b6aaf commit e6c9719

File tree

5 files changed

+208
-459
lines changed

5 files changed

+208
-459
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Go
2323
uses: actions/setup-go@v3
2424
with:
25-
go-version: '1.18'
25+
go-version: '1.19'
2626
- name: Checkout Code
2727
uses: actions/checkout@v3
2828
- name: Build Code

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup Go
2727
uses: actions/setup-go@v3
2828
with:
29-
go-version: '1.18'
29+
go-version: '1.19'
3030
- name: Set RELEASE_VERSION
3131
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
3232
- name: Set RELEASE_STRING

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.18 AS build
1+
FROM golang:1.19 AS build
22

33
ARG RELEASE_STRING=dev
44
ENV IMPORT_PATH="github.com/plumber-cd/terraform-backend-git/cmd"
@@ -8,7 +8,7 @@ RUN mkdir bin && go build \
88
-ldflags "-X ${IMPORT_PATH}.Version=${RELEASE_STRING}" \
99
-o ./bin ./...
1010

11-
FROM debian:buster
11+
FROM debian:bullseye
1212

1313
# Include CA Certs to resolve TLS handshakes
1414
RUN DEBIAN_FRONTEND="noninteractive" apt-get update && apt-get install -y ca-certificates && apt-get autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

go.mod

Lines changed: 57 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -1,121 +1,109 @@
11
module github.com/plumber-cd/terraform-backend-git
22

3-
go 1.18
3+
go 1.19
44

55
require (
6-
github.com/go-git/go-billy/v5 v5.3.1
6+
github.com/go-git/go-billy/v5 v5.4.1
77
github.com/go-git/go-git/v5 v5.4.2
88
github.com/gorilla/handlers v1.5.1
99
github.com/mitchellh/go-homedir v1.1.0
10-
github.com/spf13/cobra v1.4.0
11-
github.com/spf13/viper v1.11.0
12-
github.com/xanzy/ssh-agent v0.3.1
10+
github.com/spf13/cobra v1.6.1
11+
github.com/spf13/viper v1.15.0
12+
github.com/xanzy/ssh-agent v0.3.3
1313
go.mozilla.org/sops/v3 v3.7.3
14-
golang.org/x/crypto v0.0.0-20220513210258-46612604a0f9
15-
golang.org/x/exp v0.0.0-20220428152302-39d4317da171
16-
golang.org/x/sys v0.0.0-20220513210249-45d2b4557a2a
14+
golang.org/x/crypto v0.6.0
15+
golang.org/x/exp v0.0.0-20230213192124-5e25df0256eb
16+
golang.org/x/sys v0.5.0
1717
)
1818

1919
require (
20-
cloud.google.com/go/compute v1.5.0 // indirect
21-
filippo.io/age v1.0.0 // indirect
22-
github.com/Azure/azure-sdk-for-go v63.3.0+incompatible // indirect
20+
cloud.google.com/go/compute v1.18.0 // indirect
21+
cloud.google.com/go/compute/metadata v0.2.3 // indirect
22+
filippo.io/age v1.1.1 // indirect
23+
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible // indirect
2324
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
24-
github.com/Azure/go-autorest/autorest v0.11.26 // indirect
25-
github.com/Azure/go-autorest/autorest/adal v0.9.18 // indirect
26-
github.com/Azure/go-autorest/autorest/azure/auth v0.5.11 // indirect
27-
github.com/Azure/go-autorest/autorest/azure/cli v0.4.5 // indirect
25+
github.com/Azure/go-autorest/autorest v0.11.28 // indirect
26+
github.com/Azure/go-autorest/autorest/adal v0.9.22 // indirect
27+
github.com/Azure/go-autorest/autorest/azure/auth v0.5.12 // indirect
28+
github.com/Azure/go-autorest/autorest/azure/cli v0.4.6 // indirect
2829
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
2930
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
3031
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
3132
github.com/Azure/go-autorest/logger v0.2.1 // indirect
3233
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
33-
github.com/Microsoft/go-winio v0.5.2 // indirect
34-
github.com/ProtonMail/go-crypto v0.0.0-20220512085406-902f79d34c9f // indirect
34+
github.com/Microsoft/go-winio v0.6.0 // indirect
35+
github.com/ProtonMail/go-crypto v0.0.0-20230214155104-81033d7f4442 // indirect
3536
github.com/acomagu/bufpipe v1.0.3 // indirect
36-
github.com/armon/go-metrics v0.3.10 // indirect
37-
github.com/armon/go-radix v1.0.0 // indirect
38-
github.com/aws/aws-sdk-go v1.43.43 // indirect
37+
github.com/aws/aws-sdk-go v1.44.202 // indirect
3938
github.com/blang/semver v3.5.1+incompatible // indirect
4039
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
41-
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
40+
github.com/cloudflare/circl v1.3.2 // indirect
41+
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
4242
github.com/dimchansky/utfbom v1.1.1 // indirect
4343
github.com/emirpasic/gods v1.18.1 // indirect
44-
github.com/fatih/color v1.13.0 // indirect
44+
github.com/fatih/color v1.14.1 // indirect
4545
github.com/felixge/httpsnoop v1.0.3 // indirect
46-
github.com/fsnotify/fsnotify v1.5.4 // indirect
46+
github.com/fsnotify/fsnotify v1.6.0 // indirect
4747
github.com/go-git/gcfg v1.5.0 // indirect
48-
github.com/golang-jwt/jwt/v4 v4.3.0 // indirect
48+
github.com/golang-jwt/jwt/v4 v4.4.3 // indirect
4949
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
5050
github.com/golang/protobuf v1.5.2 // indirect
51-
github.com/golang/snappy v0.0.4 // indirect
52-
github.com/googleapis/gax-go/v2 v2.3.0 // indirect
51+
github.com/google/uuid v1.3.0 // indirect
52+
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
53+
github.com/googleapis/gax-go/v2 v2.7.0 // indirect
5354
github.com/goware/prefixer v0.0.0-20160118172347-395022866408 // indirect
5455
github.com/hashicorp/errwrap v1.1.0 // indirect
5556
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
56-
github.com/hashicorp/go-hclog v1.2.0 // indirect
57-
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
57+
github.com/hashicorp/go-hclog v1.4.0 // indirect
5858
github.com/hashicorp/go-multierror v1.1.1 // indirect
59-
github.com/hashicorp/go-plugin v1.4.3 // indirect
60-
github.com/hashicorp/go-retryablehttp v0.7.0 // indirect
59+
github.com/hashicorp/go-retryablehttp v0.7.2 // indirect
6160
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
62-
github.com/hashicorp/go-secure-stdlib/mlock v0.1.2 // indirect
63-
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.3 // indirect
61+
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.7 // indirect
6462
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
6563
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
66-
github.com/hashicorp/go-uuid v1.0.2 // indirect
67-
github.com/hashicorp/go-version v1.4.0 // indirect
68-
github.com/hashicorp/golang-lru v0.5.4 // indirect
6964
github.com/hashicorp/hcl v1.0.0 // indirect
70-
github.com/hashicorp/vault/api v1.5.0 // indirect
71-
github.com/hashicorp/vault/sdk v0.4.1 // indirect
72-
github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87 // indirect
65+
github.com/hashicorp/vault/api v1.9.0 // indirect
7366
github.com/howeyc/gopass v0.0.0-20210920133722-c8aef6fb66ef // indirect
74-
github.com/imdario/mergo v0.3.12 // indirect
75-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
67+
github.com/imdario/mergo v0.3.13 // indirect
68+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
7669
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
7770
github.com/jmespath/go-jmespath v0.4.0 // indirect
7871
github.com/kevinburke/ssh_config v1.2.0 // indirect
79-
github.com/lib/pq v1.10.5 // indirect
80-
github.com/magiconair/properties v1.8.6 // indirect
81-
github.com/mattn/go-colorable v0.1.12 // indirect
82-
github.com/mattn/go-isatty v0.0.14 // indirect
83-
github.com/mitchellh/copystructure v1.2.0 // indirect
84-
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
72+
github.com/lib/pq v1.10.7 // indirect
73+
github.com/magiconair/properties v1.8.7 // indirect
74+
github.com/mattn/go-colorable v0.1.13 // indirect
75+
github.com/mattn/go-isatty v0.0.17 // indirect
8576
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
8677
github.com/mitchellh/mapstructure v1.5.0 // indirect
87-
github.com/mitchellh/reflectwalk v1.0.2 // indirect
88-
github.com/oklog/run v1.1.0 // indirect
89-
github.com/pelletier/go-toml v1.9.5 // indirect
90-
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
91-
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
78+
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
9279
github.com/pkg/errors v0.9.1 // indirect
80+
github.com/rogpeppe/go-internal v1.9.0 // indirect
9381
github.com/russross/blackfriday/v2 v2.1.0 // indirect
9482
github.com/ryanuber/go-glob v1.0.0 // indirect
95-
github.com/sergi/go-diff v1.2.0 // indirect
96-
github.com/sirupsen/logrus v1.8.1 // indirect
97-
github.com/spf13/afero v1.8.2 // indirect
83+
github.com/sergi/go-diff v1.3.1 // indirect
84+
github.com/sirupsen/logrus v1.9.0 // indirect
85+
github.com/spf13/afero v1.9.3 // indirect
9886
github.com/spf13/cast v1.5.0 // indirect
9987
github.com/spf13/jwalterweatherman v1.1.0 // indirect
10088
github.com/spf13/pflag v1.0.5 // indirect
101-
github.com/subosito/gotenv v1.2.0 // indirect
89+
github.com/subosito/gotenv v1.4.2 // indirect
10290
go.mozilla.org/gopgagent v0.0.0-20170926210634-4d7ea76ff71a // indirect
103-
go.opencensus.io v0.23.0 // indirect
104-
go.uber.org/atomic v1.9.0 // indirect
105-
golang.org/x/net v0.0.0-20220513224357-95641704303c // indirect
106-
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 // indirect
107-
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
108-
golang.org/x/text v0.3.7 // indirect
109-
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65 // indirect
110-
google.golang.org/api v0.74.0 // indirect
91+
go.opencensus.io v0.24.0 // indirect
92+
golang.org/x/mod v0.8.0 // indirect
93+
golang.org/x/net v0.7.0 // indirect
94+
golang.org/x/oauth2 v0.5.0 // indirect
95+
golang.org/x/term v0.5.0 // indirect
96+
golang.org/x/text v0.7.0 // indirect
97+
golang.org/x/time v0.3.0 // indirect
98+
golang.org/x/tools v0.6.0 // indirect
99+
google.golang.org/api v0.110.0 // indirect
111100
google.golang.org/appengine v1.6.7 // indirect
112-
google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac // indirect
113-
google.golang.org/grpc v1.45.0 // indirect
114-
google.golang.org/protobuf v1.28.0 // indirect
115-
gopkg.in/ini.v1 v1.66.4 // indirect
101+
google.golang.org/genproto v0.0.0-20230209215440-0dfe4f8abfcc // indirect
102+
google.golang.org/grpc v1.53.0 // indirect
103+
google.golang.org/protobuf v1.28.1 // indirect
104+
gopkg.in/ini.v1 v1.67.0 // indirect
116105
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
117106
gopkg.in/urfave/cli.v1 v1.20.0 // indirect
118107
gopkg.in/warnings.v0 v0.1.2 // indirect
119-
gopkg.in/yaml.v2 v2.4.0 // indirect
120-
gopkg.in/yaml.v3 v3.0.0-20220512140231-539c8e751b99 // indirect
108+
gopkg.in/yaml.v3 v3.0.1 // indirect
121109
)

0 commit comments

Comments
 (0)