From fcf97a35c29b21ad037c226d344336e1200cab5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Thu, 24 Feb 2022 11:10:08 +0100 Subject: [PATCH] Remove a direct dependency on golang.org/x/sys MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit After https://github.com/containers/image/pull/1477 has removed the last direct user of the package, update also the dependency. Don't completely remove it so that updating c/image can't cause a downgrade of golang.org/x/sys in consumers; eventually some dependency will start requiring a newer version of golang.org/x/sys and the entry will completely drop out (or we eventually update to the newer go.mod format that lists indirect dependencies as well) Signed-off-by: Miloslav Trmač --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index b2d415698..69f0e3012 100644 --- a/go.mod +++ b/go.mod @@ -39,6 +39,6 @@ require ( golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 golang.org/x/sync v0.0.0-20210220032951-036812b2e83c - golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27 + golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27 // indirect golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 )