mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-09 21:17:09 +08:00
vendor: update compose-go to v2.1.6
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
4
vendor/github.com/compose-spec/compose-go/v2/schema/compose-spec.json
generated
vendored
4
vendor/github.com/compose-spec/compose-go/v2/schema/compose-spec.json
generated
vendored
@ -480,7 +480,9 @@
|
||||
"path": {"type": "string"},
|
||||
"action": {"type": "string", "enum": ["rebuild", "sync", "sync+restart"]},
|
||||
"target": {"type": "string"}
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"patternProperties": {"^x-": {}}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"patternProperties": {"^x-": {}}
|
||||
|
6
vendor/github.com/compose-spec/compose-go/v2/types/derived.gen.go
generated
vendored
6
vendor/github.com/compose-spec/compose-go/v2/types/derived.gen.go
generated
vendored
@ -1814,6 +1814,12 @@ func deriveDeepCopy_40(dst, src *Trigger) {
|
||||
}
|
||||
copy(dst.Ignore, src.Ignore)
|
||||
}
|
||||
if src.Extensions != nil {
|
||||
dst.Extensions = make(map[string]any, len(src.Extensions))
|
||||
src.Extensions.DeepCopy(dst.Extensions)
|
||||
} else {
|
||||
dst.Extensions = nil
|
||||
}
|
||||
}
|
||||
|
||||
// deriveDeepCopy_41 recursively copies the contents of src into dst.
|
||||
|
9
vendor/github.com/compose-spec/compose-go/v2/types/develop.go
generated
vendored
9
vendor/github.com/compose-spec/compose-go/v2/types/develop.go
generated
vendored
@ -31,8 +31,9 @@ const (
|
||||
)
|
||||
|
||||
type Trigger struct {
|
||||
Path string `yaml:"path" json:"path"`
|
||||
Action WatchAction `yaml:"action" json:"action"`
|
||||
Target string `yaml:"target,omitempty" json:"target,omitempty"`
|
||||
Ignore []string `yaml:"ignore,omitempty" json:"ignore,omitempty"`
|
||||
Path string `yaml:"path" json:"path"`
|
||||
Action WatchAction `yaml:"action" json:"action"`
|
||||
Target string `yaml:"target,omitempty" json:"target,omitempty"`
|
||||
Ignore []string `yaml:"ignore,omitempty" json:"ignore,omitempty"`
|
||||
Extensions Extensions `yaml:"#extensions,inline,omitempty" json:"-"`
|
||||
}
|
||||
|
Reference in New Issue
Block a user