mirror of
https://github.com/siderolabs/talos.git
synced 2026-05-06 04:46:17 +02:00
Fix workflows having trigger as `workflow_run` Signed-off-by: Noel Georgi <git@frezbo.dev>
75 lines
3.0 KiB
Modula-2
75 lines
3.0 KiB
Modula-2
module github.com/siderolabs/talos/pkg/machinery
|
|
|
|
go 1.26.1
|
|
|
|
// forked ethtool introduces missing APIs
|
|
replace github.com/mdlayher/ethtool => github.com/siderolabs/ethtool v0.4.0-sidero
|
|
|
|
require (
|
|
github.com/blang/semver/v4 v4.0.0
|
|
github.com/containerd/go-cni v1.1.13
|
|
github.com/cosi-project/runtime v1.14.1
|
|
github.com/dustin/go-humanize v1.0.1
|
|
github.com/emicklei/dot v1.11.0
|
|
github.com/evanphx/json-patch v5.9.11+incompatible
|
|
github.com/ghodss/yaml v1.0.0
|
|
github.com/google/cel-go v0.28.0
|
|
github.com/hashicorp/go-multierror v1.1.1
|
|
github.com/jsimonetti/rtnetlink/v2 v2.2.1-0.20260317095713-310581b9c6ac
|
|
github.com/mdlayher/ethtool v0.5.1
|
|
github.com/neticdk/go-stdlib v1.0.1
|
|
github.com/opencontainers/runtime-spec v1.3.0
|
|
github.com/planetscale/vtprotobuf v0.6.1-0.20250313105119-ba97887b0a25
|
|
github.com/ryanuber/go-glob v1.0.0
|
|
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2
|
|
github.com/siderolabs/crypto v0.6.5
|
|
github.com/siderolabs/gen v0.8.6
|
|
github.com/siderolabs/go-api-signature v0.3.12
|
|
github.com/siderolabs/go-pointer v1.0.1
|
|
github.com/siderolabs/net v0.4.0
|
|
github.com/siderolabs/protoenc v0.2.4
|
|
github.com/stretchr/testify v1.11.1
|
|
go.uber.org/zap v1.27.1
|
|
go.yaml.in/yaml/v4 v4.0.0-rc.4
|
|
golang.org/x/net v0.53.0
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20260414002931-afd174a4e478
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20260414002931-afd174a4e478
|
|
google.golang.org/grpc v1.80.0
|
|
google.golang.org/protobuf v1.36.12-0.20260120151049-f2248ac996af
|
|
)
|
|
|
|
require (
|
|
cel.dev/expr v0.25.1 // indirect
|
|
github.com/ProtonMail/go-crypto v1.4.1 // indirect
|
|
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f // indirect
|
|
github.com/ProtonMail/gopenpgp/v2 v2.10.0 // indirect
|
|
github.com/adrg/xdg v0.5.3 // indirect
|
|
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
|
|
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
|
|
github.com/cloudflare/circl v1.6.3 // indirect
|
|
github.com/containernetworking/cni v1.3.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/gertd/go-pluralize v0.2.1 // indirect
|
|
github.com/google/go-cmp v0.7.0 // indirect
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.28.0 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/josharian/native v1.1.0 // indirect
|
|
github.com/mdlayher/genetlink v1.3.2 // indirect
|
|
github.com/mdlayher/netlink v1.9.0 // indirect
|
|
github.com/mdlayher/socket v0.5.1 // indirect
|
|
github.com/petermattis/goid v0.0.0-20240813172612-4fcff4a6cae7 // indirect
|
|
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/sasha-s/go-deadlock v0.3.5 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
golang.org/x/crypto v0.50.0 // indirect
|
|
golang.org/x/exp v0.0.0-20250128182459-e0ece0dbea4c // indirect
|
|
golang.org/x/sync v0.20.0 // indirect
|
|
golang.org/x/sys v0.43.0 // indirect
|
|
golang.org/x/text v0.36.0 // indirect
|
|
golang.org/x/time v0.15.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|