Update github.com/opencontainers/runtime-tools digest to 408c51e
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									12f1c98dc5
								
							
						
					
					
						commit
						8106072f0d
					
				| 
						 | 
				
			
			@ -29,7 +29,7 @@ require (
 | 
			
		|||
	github.com/opencontainers/image-spec v1.1.0-rc5
 | 
			
		||||
	github.com/opencontainers/runc v1.1.9
 | 
			
		||||
	github.com/opencontainers/runtime-spec v1.1.0
 | 
			
		||||
	github.com/opencontainers/runtime-tools v0.9.1-0.20230317050512-e931285f4b69
 | 
			
		||||
	github.com/opencontainers/runtime-tools v0.9.1-0.20230914150019-408c51e934dc
 | 
			
		||||
	github.com/opencontainers/selinux v1.11.0
 | 
			
		||||
	github.com/pkg/sftp v1.13.6
 | 
			
		||||
	github.com/pmezard/go-difflib v1.0.0
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -311,8 +311,8 @@ github.com/opencontainers/runc v1.1.1-0.20220617142545-8b9452f75cbc h1:qjkUzmFsO
 | 
			
		|||
github.com/opencontainers/runc v1.1.1-0.20220617142545-8b9452f75cbc/go.mod h1:wUOQGsiKae6VzA/UvlCK3cO+pHk8F2VQHlIoITEfMM8=
 | 
			
		||||
github.com/opencontainers/runtime-spec v1.1.0 h1:HHUyrt9mwHUjtasSbXSMvs4cyFxh+Bll4AjJ9odEGpg=
 | 
			
		||||
github.com/opencontainers/runtime-spec v1.1.0/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0=
 | 
			
		||||
github.com/opencontainers/runtime-tools v0.9.1-0.20230317050512-e931285f4b69 h1:NL4xDvl68WWqQ+8WPMM3l5PsZTxaT7Z4K3VSKDRuAGs=
 | 
			
		||||
github.com/opencontainers/runtime-tools v0.9.1-0.20230317050512-e931285f4b69/go.mod h1:bNpfuSHA3DZRtD0TPWO8LzgtLpFPTVA/3jDkzD/OPyk=
 | 
			
		||||
github.com/opencontainers/runtime-tools v0.9.1-0.20230914150019-408c51e934dc h1:d2hUh5O6MRBvStV55MQ8we08t42zSTqBbscoQccWmMc=
 | 
			
		||||
github.com/opencontainers/runtime-tools v0.9.1-0.20230914150019-408c51e934dc/go.mod h1:8tx1helyqhUC65McMm3x7HmOex8lO2/v9zPuxmKHurs=
 | 
			
		||||
github.com/opencontainers/selinux v1.11.0 h1:+5Zbo97w3Lbmb3PeqQtpmTkMwsW5nRI3YaLpt7tQ7oU=
 | 
			
		||||
github.com/opencontainers/selinux v1.11.0/go.mod h1:E5dMC3VPuVvVHDYmi78qvhJp8+M586T4DlDRYpFkyec=
 | 
			
		||||
github.com/ostreedev/ostree-go v0.0.0-20210805093236-719684c64e4f h1:/UDgs8FGMqwnHagNDPGOlts35QkhAZ8by3DR7nMih7M=
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -323,7 +323,7 @@ func createEnvCacheMap(env []string) map[string]int {
 | 
			
		|||
//
 | 
			
		||||
// Deprecated: Replace with:
 | 
			
		||||
//
 | 
			
		||||
//   Use generator.Config = config
 | 
			
		||||
//	Use generator.Config = config
 | 
			
		||||
func (g *Generator) SetSpec(config *rspec.Spec) {
 | 
			
		||||
	g.Config = config
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -23,8 +23,10 @@ type SyscallOpts struct {
 | 
			
		|||
func ParseSyscallFlag(args SyscallOpts, config *rspec.LinuxSeccomp) error {
 | 
			
		||||
	var arguments []string
 | 
			
		||||
	if args.Index != "" && args.Value != "" && args.ValueTwo != "" && args.Operator != "" {
 | 
			
		||||
		arguments = []string{args.Action, args.Syscall, args.Index, args.Value,
 | 
			
		||||
			args.ValueTwo, args.Operator}
 | 
			
		||||
		arguments = []string{
 | 
			
		||||
			args.Action, args.Syscall, args.Index, args.Value,
 | 
			
		||||
			args.ValueTwo, args.Operator,
 | 
			
		||||
		}
 | 
			
		||||
	} else {
 | 
			
		||||
		arguments = []string{args.Action, args.Syscall}
 | 
			
		||||
	}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -32,7 +32,6 @@ func arches() []rspec.Arch {
 | 
			
		|||
 | 
			
		||||
// DefaultProfile defines the whitelist for the default seccomp profile.
 | 
			
		||||
func DefaultProfile(rs *specs.Spec) *rspec.LinuxSeccomp {
 | 
			
		||||
 | 
			
		||||
	syscalls := []rspec.LinuxSyscall{
 | 
			
		||||
		{
 | 
			
		||||
			Names: []string{
 | 
			
		||||
| 
						 | 
				
			
			@ -535,7 +534,6 @@ func DefaultProfile(rs *specs.Spec) *rspec.LinuxSeccomp {
 | 
			
		|||
				},
 | 
			
		||||
			},
 | 
			
		||||
		}...)
 | 
			
		||||
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	arch := runtime.GOARCH
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -504,7 +504,7 @@ github.com/opencontainers/runc/libcontainer/utils
 | 
			
		|||
# github.com/opencontainers/runtime-spec v1.1.0
 | 
			
		||||
## explicit
 | 
			
		||||
github.com/opencontainers/runtime-spec/specs-go
 | 
			
		||||
# github.com/opencontainers/runtime-tools v0.9.1-0.20230317050512-e931285f4b69
 | 
			
		||||
# github.com/opencontainers/runtime-tools v0.9.1-0.20230914150019-408c51e934dc
 | 
			
		||||
## explicit; go 1.19
 | 
			
		||||
github.com/opencontainers/runtime-tools/generate
 | 
			
		||||
github.com/opencontainers/runtime-tools/generate/seccomp
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue