Skip to content

Commit 76ac028

Browse files
Merge pull request #1768 from SaschaSchwarze0/sascha-update-got-v0.14
[release-v0.14] Update github.com/go-git/go-git/v5 from v5.12.0 to v5.13.1
2 parents c2aa39b + 9dec807 commit 76ac028

File tree

100 files changed

+5197
-994
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+5197
-994
lines changed

go.mod

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.22.0
44

55
require (
66
github.com/docker/cli v27.3.1+incompatible
7-
github.com/go-git/go-git/v5 v5.12.0
7+
github.com/go-git/go-git/v5 v5.13.1
88
github.com/go-logr/logr v1.4.2
99
github.com/golang-jwt/jwt/v4 v4.5.1
1010
github.com/google/go-containerregistry v0.20.2
@@ -35,15 +35,15 @@ require (
3535
contrib.go.opencensus.io/exporter/prometheus v0.4.2 // indirect
3636
dario.cat/mergo v1.0.1 // indirect
3737
github.com/Microsoft/go-winio v0.6.2 // indirect
38-
github.com/ProtonMail/go-crypto v1.0.0 // indirect
38+
github.com/ProtonMail/go-crypto v1.1.3 // indirect
3939
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
4040
github.com/beorn7/perks v1.0.1 // indirect
4141
github.com/blendle/zapdriver v1.3.1 // indirect
4242
github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
4343
github.com/cespare/xxhash/v2 v2.3.0 // indirect
4444
github.com/cloudflare/circl v1.5.0 // indirect
4545
github.com/containerd/stargz-snapshotter/estargz v0.15.1 // indirect
46-
github.com/cyphar/filepath-securejoin v0.3.4 // indirect
46+
github.com/cyphar/filepath-securejoin v0.3.6 // indirect
4747
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
4848
github.com/docker/distribution v2.8.3+incompatible // indirect
4949
github.com/docker/docker-credential-helpers v0.8.2 // indirect
@@ -53,7 +53,7 @@ require (
5353
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
5454
github.com/fsnotify/fsnotify v1.8.0 // indirect
5555
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
56-
github.com/go-git/go-billy/v5 v5.6.0 // indirect
56+
github.com/go-git/go-billy/v5 v5.6.1 // indirect
5757
github.com/go-logr/zapr v1.3.0 // indirect
5858
github.com/go-openapi/jsonpointer v0.21.0 // indirect
5959
github.com/go-openapi/jsonreference v0.21.0 // indirect

go.sum

+14-42
Large diffs are not rendered by default.

pkg/git/git.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ package git
66

77
import (
88
"context"
9+
"errors"
910
"fmt"
1011

1112
"github.com/go-git/go-git/v5/config"
@@ -45,7 +46,7 @@ func ValidateGitURLExists(ctx context.Context, urlPath string) error {
4546
// path doesn't exist, func will return `authentication required`,
4647
// this is maybe misleading. So convert this error message to:
4748
// `remote repository unreachable`
48-
if err == transport.ErrAuthenticationRequired {
49+
if errors.Is(err, transport.ErrAuthenticationRequired) {
4950
return fmt.Errorf("remote repository unreachable")
5051
}
5152

vendor/github.com/ProtonMail/go-crypto/ocb/ocb.go

+3-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/ProtonMail/go-crypto/openpgp/armor/armor.go

+9-57
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/ProtonMail/go-crypto/openpgp/armor/encode.go

+57-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/ProtonMail/go-crypto/openpgp/canonical_text.go

+9-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/ProtonMail/go-crypto/openpgp/ecdh/ecdh.go

+1-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)