Skip to content

Commit d37fc9a

Browse files
committed
Switch from github.com/containers/storage to go.podman.io/storage.
Signed-off-by: Jan Kaluza <[email protected]>
1 parent b46e5dd commit d37fc9a

File tree

96 files changed

+21
-19
lines changed

Some content is hidden

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

96 files changed

+21
-19
lines changed

go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
module github.com/containers/psgo
22

3-
go 1.23.0
3+
go 1.23.3
4+
5+
toolchain go1.24.6
46

57
require (
6-
github.com/containers/storage v1.59.1
78
github.com/moby/sys/user v0.4.0
89
github.com/stretchr/testify v1.10.0
10+
go.podman.io/storage v0.0.0-20250826054041-6e4bed3c9118
911
golang.org/x/sys v0.35.0
1012
)
1113

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
github.com/containers/storage v1.59.1 h1:11Zu68MXsEQGBBd+GadPrHPpWeqjKS8hJDGiAHgIqDs=
2-
github.com/containers/storage v1.59.1/go.mod h1:KoAYHnAjP3/cTsRS+mmWZGkufSY2GACiKQ4V3ZLQnR0=
31
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
42
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
53
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
@@ -18,6 +16,8 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+
1816
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
1917
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
2018
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
19+
go.podman.io/storage v0.0.0-20250826054041-6e4bed3c9118 h1:Fhm01df7FOuM0seIEcx72OnCDUNCPQ1dGH2/7L3kFY8=
20+
go.podman.io/storage v0.0.0-20250826054041-6e4bed3c9118/go.mod h1:gFpJkc16XdKgwbZwxJ4cxfyg++vmlT3yaoc2SRXSqYQ=
2121
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
2222
golang.org/x/sys v0.35.0 h1:vz1N37gP5bs89s7He8XuIYXpyY0+QlsKmzipCbUtyxI=
2323
golang.org/x/sys v0.35.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=

internal/proc/ns.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"io"
2121
"os"
2222

23-
"github.com/containers/storage/pkg/idtools"
23+
"go.podman.io/storage/pkg/idtools"
2424
)
2525

2626
// ParsePIDNamespace returns the content of /proc/$pid/ns/pid.

internal/proc/status.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"strings"
2323
"sync"
2424

25-
"github.com/containers/storage/pkg/idtools"
25+
"go.podman.io/storage/pkg/idtools"
2626
)
2727

2828
// Status is a direct translation of a `/proc/[pid]/status`, which provides much

psgo.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import (
4040
"github.com/containers/psgo/internal/dev"
4141
"github.com/containers/psgo/internal/proc"
4242
"github.com/containers/psgo/internal/process"
43-
"github.com/containers/storage/pkg/idtools"
43+
"go.podman.io/storage/pkg/idtools"
4444
"golang.org/x/sys/unix"
4545
)
4646

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)