Skip to content

Commit 41d96d7

Browse files
Bump the go_modules group across 2 directories with 1 update (#85)
* Adding in a make tidy to make life easier * Bump the go_modules group across 2 directories with 1 update Bumps the go_modules group with 1 update in the /examples directory: [github.com/go-git/go-git/v5](https://github.com/go-git/go-git). Bumps the go_modules group with 1 update in the /provider directory: [github.com/go-git/go-git/v5](https://github.com/go-git/go-git). Updates `github.com/go-git/go-git/v5` from 5.12.0 to 5.13.0 - [Release notes](https://github.com/go-git/go-git/releases) - [Commits](go-git/go-git@v5.12.0...v5.13.0) Updates `github.com/go-git/go-git/v5` from 5.12.0 to 5.13.0 - [Release notes](https://github.com/go-git/go-git/releases) - [Commits](go-git/go-git@v5.12.0...v5.13.0) --- updated-dependencies: - dependency-name: github.com/go-git/go-git/v5 dependency-type: indirect dependency-group: go_modules - dependency-name: github.com/go-git/go-git/v5 dependency-type: indirect dependency-group: go_modules ... Signed-off-by: dependabot[bot] <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Richard Shade <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7c261c5 commit 41d96d7

File tree

6 files changed

+71
-107
lines changed

6 files changed

+71
-107
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ ci-scripts/
2121
**/*.bak
2222
ci-scripts/
2323
*.tar.gz
24+
**/out.txt
2425

2526
sdk/dotnet/version.txt
2627
sdk/java/.gradle

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,3 +128,8 @@ install_java_sdk: # Required by CI
128128
.pulumi/bin/pulumi: HOME := $(WORKING_DIR)
129129
.pulumi/bin/pulumi: .pulumi.version
130130
curl -fsSL https://get.pulumi.com | sh -s -- --version "$(PULUMI_VERSION)"
131+
132+
tidy:
133+
cd provider/ && go mod tidy && cd ..
134+
cd examples/ && go mod tidy && cd ..
135+
cd sdk/ && go mod tidy && cd ..

examples/go.mod

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ require (
2727
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
2828
github.com/BurntSushi/toml v1.2.1 // indirect
2929
github.com/Microsoft/go-winio v0.6.1 // indirect
30-
github.com/ProtonMail/go-crypto v1.0.0 // indirect
30+
github.com/ProtonMail/go-crypto v1.1.3 // indirect
3131
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
3232
github.com/agext/levenshtein v1.2.3 // indirect
3333
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
@@ -57,7 +57,7 @@ require (
5757
github.com/cheggaaa/pb v1.0.29 // indirect
5858
github.com/cloudflare/circl v1.3.7 // indirect
5959
github.com/containerd/console v1.0.4-0.20230313162750-1ae8d489ac81 // indirect
60-
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
60+
github.com/cyphar/filepath-securejoin v0.2.5 // indirect
6161
github.com/davecgh/go-spew v1.1.1 // indirect
6262
github.com/deckarep/golang-set/v2 v2.5.0 // indirect
6363
github.com/djherbis/times v1.5.0 // indirect
@@ -66,8 +66,8 @@ require (
6666
github.com/felixge/httpsnoop v1.0.4 // indirect
6767
github.com/fsnotify/fsnotify v1.7.0 // indirect
6868
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
69-
github.com/go-git/go-billy/v5 v5.5.0 // indirect
70-
github.com/go-git/go-git/v5 v5.12.0 // indirect
69+
github.com/go-git/go-billy/v5 v5.6.0 // indirect
70+
github.com/go-git/go-git/v5 v5.13.0 // indirect
7171
github.com/go-jose/go-jose/v3 v3.0.3 // indirect
7272
github.com/go-logr/logr v1.4.1 // indirect
7373
github.com/go-logr/stdr v1.2.2 // indirect
@@ -140,10 +140,10 @@ require (
140140
github.com/segmentio/asm v1.1.3 // indirect
141141
github.com/segmentio/encoding v0.3.5 // indirect
142142
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
143-
github.com/skeema/knownhosts v1.2.2 // indirect
143+
github.com/skeema/knownhosts v1.3.0 // indirect
144144
github.com/spf13/cobra v1.8.0 // indirect
145145
github.com/spf13/pflag v1.0.5 // indirect
146-
github.com/stretchr/testify v1.9.0 // indirect
146+
github.com/stretchr/testify v1.10.0 // indirect
147147
github.com/texttheater/golang-levenshtein v1.0.1 // indirect
148148
github.com/uber/jaeger-client-go v2.30.0+incompatible // indirect
149149
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
@@ -162,16 +162,16 @@ require (
162162
gocloud.dev v0.37.0 // indirect
163163
gocloud.dev/secrets/hashivault v0.37.0 // indirect
164164
golang.org/x/crypto v0.31.0 // indirect
165-
golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8 // indirect
166-
golang.org/x/mod v0.18.0 // indirect
165+
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
166+
golang.org/x/mod v0.19.0 // indirect
167167
golang.org/x/net v0.33.0 // indirect
168168
golang.org/x/oauth2 v0.22.0 // indirect
169169
golang.org/x/sync v0.10.0 // indirect
170170
golang.org/x/sys v0.28.0 // indirect
171171
golang.org/x/term v0.27.0 // indirect
172172
golang.org/x/text v0.21.0 // indirect
173173
golang.org/x/time v0.5.0 // indirect
174-
golang.org/x/tools v0.22.0 // indirect
174+
golang.org/x/tools v0.23.0 // indirect
175175
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
176176
google.golang.org/api v0.169.0 // indirect
177177
google.golang.org/genproto v0.0.0-20240311173647-c811ad7063a7 // indirect

0 commit comments

Comments
 (0)