bump runc go dep to v1.3.0

Signed-off-by: Tariq Ibrahim <tibrahim@nvidia.com>
This commit is contained in:
Tariq Ibrahim
2025-04-29 19:01:38 -07:00
parent de3d736663
commit f7a415f480
9 changed files with 32 additions and 53 deletions

View File

@@ -22,7 +22,7 @@ import (
"strconv"
"syscall"
"github.com/opencontainers/runc/libcontainer/dmz"
"github.com/opencontainers/runc/libcontainer/exeseal"
)
// SafeExec attempts to clone the specified binary (as an memfd, for example) before executing it.
@@ -53,5 +53,5 @@ func cloneBinary(path string) (*os.File, error) {
}
size := stat.Size()
return dmz.CloneBinary(exe, size, path, os.TempDir())
return exeseal.CloneBinary(exe, size, path, os.TempDir())
}