Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: git fetch --prune --unshallow
- uses: actions/setup-go@v6
with:
go-version: 1.25
go-version: 1.26
check-latest: true
- uses: goreleaser/goreleaser-action@v7.0.0
id: run-goreleaser
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
go-version-file: go.mod
- uses: golangci/golangci-lint-action@v9.2.0
with:
version: v2.10
version: v2.11

- uses: chainguard-dev/actions/trailing-space@main
if: ${{ always() }}
Expand Down
2 changes: 1 addition & 1 deletion cmd/krane/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/go-containerregistry/cmd/krane

go 1.25.6
go 1.26.1

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

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/go-containerregistry

go 1.25.6
go 1.26.1

require (
github.com/containerd/stargz-snapshotter/estargz v0.18.2
Expand Down
2 changes: 1 addition & 1 deletion pkg/authn/k8schain/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/go-containerregistry/pkg/authn/k8schain

go 1.25.6
go 1.26.1

replace (
github.com/google/go-containerregistry => ../../../
Expand Down
2 changes: 1 addition & 1 deletion pkg/authn/kubernetes/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/go-containerregistry/pkg/authn/kubernetes

go 1.25.6
go 1.26.1

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

Expand Down
2 changes: 1 addition & 1 deletion pkg/name/registry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ func TestRegistryScheme(t *testing.T) {
domain: "index.docker.io",
scheme: "https",
}, {
domain: "::1",
domain: "[::1]",
scheme: "http",
}, {
domain: "10.2.3.4:5000",
Expand Down
2 changes: 1 addition & 1 deletion pkg/v1/layout/layoutpath.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ import "path/filepath"
type Path string

func (l Path) path(elem ...string) string {
complete := []string{string(l)}
complete := []string{string(l)} //nolint:prealloc
return filepath.Join(append(complete, elem...)...)
}
2 changes: 1 addition & 1 deletion pkg/v1/remote/descriptor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ func TestHeadSchema1(t *testing.T) {
}

if desc.Size != int64(len(response)) {
t.Errorf("Descriptor.Size = %q, expected %q", desc.Size, len(response))
t.Errorf("Descriptor.Size = %d, expected %d", desc.Size, len(response))
}
}

Expand Down