Skip to content

Commit 3888fb8

Browse files
authored
bump golang to 1.25.7 (#2236)
1 parent f439624 commit 3888fb8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

cmd/krane/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/google/go-containerregistry/cmd/krane
22

3-
go 1.25.6
3+
go 1.25.7
44

55
replace github.com/google/go-containerregistry => ../../
66

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/google/go-containerregistry
22

3-
go 1.25.6
3+
go 1.25.7
44

55
require (
66
github.com/containerd/stargz-snapshotter/estargz v0.18.2

pkg/authn/k8schain/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/google/go-containerregistry/pkg/authn/k8schain
22

3-
go 1.25.6
3+
go 1.25.7
44

55
replace (
66
github.com/google/go-containerregistry => ../../../

pkg/authn/kubernetes/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/google/go-containerregistry/pkg/authn/kubernetes
22

3-
go 1.25.6
3+
go 1.25.7
44

55
replace github.com/google/go-containerregistry => ../../../
66

pkg/v1/layout/layoutpath.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ import "path/filepath"
2020
type Path string
2121

2222
func (l Path) path(elem ...string) string {
23-
complete := []string{string(l)}
23+
complete := []string{string(l)} //nolint:prealloc
2424
return filepath.Join(append(complete, elem...)...)
2525
}

0 commit comments

Comments
 (0)