mirror of
				https://github.com/containers/podman.git
				synced 2025-11-01 02:42:11 +08:00 
			
		
		
		
	Bump github.com/containers/psgo from 1.5.2 to 1.6.0
Bumps [github.com/containers/psgo](https://github.com/containers/psgo) from 1.5.2 to 1.6.0. - [Release notes](https://github.com/containers/psgo/releases) - [Commits](https://github.com/containers/psgo/compare/v1.5.2...v1.6.0) --- updated-dependencies: - dependency-name: github.com/containers/psgo dependency-type: direct:production update-type: version-update:semver-minor ... [NO TESTS NEEDED] since it's migrating to a new version. Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
This commit is contained in:
		![49699333+dependabot[bot]@users.noreply.github.com](/assets/img/avatar_default.png) dependabot[bot]
					dependabot[bot]
				
			
				
					committed by
					
						 Valentin Rothberg
						Valentin Rothberg
					
				
			
			
				
	
			
			
			 Valentin Rothberg
						Valentin Rothberg
					
				
			
						parent
						
							784e1ae137
						
					
				
				
					commit
					309d989712
				
			
							
								
								
									
										6
									
								
								vendor/github.com/containers/psgo/internal/proc/status.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								vendor/github.com/containers/psgo/internal/proc/status.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @ -20,8 +20,6 @@ import ( | ||||
| 	"os" | ||||
| 	"os/exec" | ||||
| 	"strings" | ||||
|  | ||||
| 	"github.com/pkg/errors" | ||||
| ) | ||||
|  | ||||
| // Status is a direct translation of a `/proc/[pid]/status`, which provides much | ||||
| @ -251,12 +249,12 @@ func parseStatus(pid string, lines []string) (*Status, error) { | ||||
| 			s.TracerPid = fields[1] | ||||
| 		case "Uid:": | ||||
| 			if len(fields) != 5 { | ||||
| 				return nil, errors.Wrap(errUnexpectedInput, line) | ||||
| 				return nil, fmt.Errorf(line+": %w", errUnexpectedInput) | ||||
| 			} | ||||
| 			s.Uids = []string{fields[1], fields[2], fields[3], fields[4]} | ||||
| 		case "Gid:": | ||||
| 			if len(fields) != 5 { | ||||
| 				return nil, errors.Wrap(errUnexpectedInput, line) | ||||
| 				return nil, fmt.Errorf(line+": %w", errUnexpectedInput) | ||||
| 			} | ||||
| 			s.Gids = []string{fields[1], fields[2], fields[3], fields[4]} | ||||
| 		case "FDSize:": | ||||
|  | ||||
		Reference in New Issue
	
	Block a user