Update module github.com/containers/psgo to v1.10.0

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot]
2025-11-08 01:38:22 +00:00
committed by GitHub
parent 0aa3f74ccd
commit b458ba0d49
9 changed files with 21 additions and 16 deletions

2
go.mod
View File

@@ -16,7 +16,7 @@ require (
github.com/containers/gvisor-tap-vsock v0.8.7
github.com/containers/libhvee v0.10.1-0.20250829163521-178d10e67860
github.com/containers/ocicrypt v1.2.1
github.com/containers/psgo v1.9.1-0.20251104204210-533b50b1c2d9
github.com/containers/psgo v1.10.0
github.com/containers/winquit v1.1.0
github.com/coreos/go-systemd/v22 v22.6.0
github.com/crc-org/vfkit v0.6.1

4
go.sum
View File

@@ -75,8 +75,8 @@ github.com/containers/luksy v0.0.0-20250910190358-2cf5bc928957 h1:WxixhZ0typ8o66
github.com/containers/luksy v0.0.0-20250910190358-2cf5bc928957/go.mod h1:fGPsLPRi1etbHfe5o6sdx6ajsW810tI43uyF6ugmP/o=
github.com/containers/ocicrypt v1.2.1 h1:0qIOTT9DoYwcKmxSt8QJt+VzMY18onl9jUXsxpVhSmM=
github.com/containers/ocicrypt v1.2.1/go.mod h1:aD0AAqfMp0MtwqWgHM1bUwe1anx0VazI108CRrSKINQ=
github.com/containers/psgo v1.9.1-0.20251104204210-533b50b1c2d9 h1:1xzk3KbGOn6wZ7cIZapLcyQeRXrDuG7x389wTn8IzkU=
github.com/containers/psgo v1.9.1-0.20251104204210-533b50b1c2d9/go.mod h1:e44fw+1A7eJH1y0eWAo3P7sjfftXDlfF4AY498h+svQ=
github.com/containers/psgo v1.10.0 h1:r9cEzAMVRtC0sw4ayIPjbd9EgF9pPaTCqKgDHhS0D/8=
github.com/containers/psgo v1.10.0/go.mod h1:e44fw+1A7eJH1y0eWAo3P7sjfftXDlfF4AY498h+svQ=
github.com/containers/winquit v1.1.0 h1:jArun04BNDQvt2W0Y78kh9TazN2EIEMG5Im6/JY7+pE=
github.com/containers/winquit v1.1.0/go.mod h1:PsPeZlnbkmGGIToMPHF1zhWjBUkd8aHjMOr/vFcPxw8=
github.com/coreos/go-oidc/v3 v3.14.1 h1:9ePWwfdwC4QKRlCXsJGou56adA/owXczOzwKdOumLqk=

View File

@@ -1,6 +1,12 @@
# For documentation, see https://golangci-lint.run/usage/configuration/
version: "2"
linters:
enable:
- errorlint
formatters:
enable:
- gofumpt
# Show all issues at once so it is visible how much must be fixed
issues:
max-issues-per-linter: 0
max-same-issues: 0

View File

@@ -73,7 +73,7 @@ func TTYs() (*[]TTY, error) {
if err != nil {
return nil, err
}
defer devDir.Close()
defer devDir.Close() //nolint:errcheck
devices := []string{}
devTTYs, err := devDir.Readdirnames(0)
@@ -91,7 +91,7 @@ func TTYs() (*[]TTY, error) {
if err != nil {
return nil, err
}
defer devPTSDir.Close()
defer devPTSDir.Close() //nolint:errcheck
devPTSs, err := devPTSDir.Readdirnames(0)
if err != nil {

View File

@@ -1,5 +1,4 @@
//go:build !cgo
// +build !cgo
// Copyright 2018 psgo authors
//

View File

@@ -47,7 +47,7 @@ func ReadMappings(path string) ([]idtools.IDMap, error) {
if err != nil {
return nil, err
}
defer file.Close()
defer file.Close() //nolint:errcheck
var mappings []idtools.IDMap

View File

@@ -31,7 +31,7 @@ func GetPIDs() ([]string, error) {
if err != nil {
return nil, err
}
defer procDir.Close()
defer procDir.Close() //nolint:errcheck
// extract string slice of all directories in procDir
pidDirs, err := procDir.Readdirnames(0)
@@ -74,7 +74,7 @@ func getPIDsFromCgroupV1(pid string) ([]string, error) {
if err != nil {
return nil, err
}
defer f.Close()
defer f.Close() //nolint:errcheck
scanner := bufio.NewScanner(f)
cgroupPath := ""
@@ -109,7 +109,7 @@ func getPIDsFromCgroupV1(pid string) ([]string, error) {
return nil, err
}
}
defer f.Close()
defer f.Close() //nolint:errcheck
pids := []string{}
scanner = bufio.NewScanner(f)
@@ -128,7 +128,7 @@ func getPIDsFromCgroupV2(pid string) ([]string, error) {
if err != nil {
return nil, err
}
defer f.Close()
defer f.Close() //nolint:errcheck
scanner := bufio.NewScanner(f)
cgroupSlice := ""
@@ -152,7 +152,7 @@ func getPIDsFromCgroupV2(pid string) ([]string, error) {
if err != nil {
return nil, err
}
defer f.Close()
defer f.Close() //nolint:errcheck
pids := []string{}
scanner = bufio.NewScanner(f)

View File

@@ -425,7 +425,7 @@ func JoinNamespaceAndProcessInfoWithOptions(pid string, descriptors []string, op
dataErr = err
return
}
defer fd.Close()
defer fd.Close() //nolint:errcheck
// create a new mountns on the current thread
if err = unix.Unshare(unix.CLONE_NEWNS); err != nil {

2
vendor/modules.txt vendored
View File

@@ -156,7 +156,7 @@ github.com/containers/ocicrypt/keywrap/pkcs7
github.com/containers/ocicrypt/spec
github.com/containers/ocicrypt/utils
github.com/containers/ocicrypt/utils/keyprovider
# github.com/containers/psgo v1.9.1-0.20251104204210-533b50b1c2d9
# github.com/containers/psgo v1.10.0
## explicit; go 1.24.0
github.com/containers/psgo
github.com/containers/psgo/internal/capabilities