-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Markus Blaschke <[email protected]>
- Loading branch information
Showing
3 changed files
with
66 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,56 @@ | ||
module github.com/webdevops/azure-janitor | ||
|
||
go 1.23 | ||
go 1.23.0 | ||
|
||
toolchain go1.23.6 | ||
|
||
require ( | ||
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/authorization/armauthorization/v2 v2.2.0 | ||
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.2.0 | ||
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armsubscriptions v1.3.0 | ||
github.com/jessevdk/go-flags v1.6.1 | ||
github.com/karrick/tparse/v2 v2.8.2 | ||
github.com/prometheus/client_golang v1.20.3 | ||
github.com/prometheus/common v0.59.1 // indirect | ||
github.com/prometheus/client_golang v1.20.5 | ||
github.com/prometheus/common v0.62.0 // indirect | ||
github.com/rickb777/date v1.21.1 | ||
github.com/webdevops/go-common v0.0.0-20240821190643-248b039cf4c0 | ||
github.com/webdevops/go-common v0.0.0-20250202124351-b61548f2447b | ||
go.uber.org/zap v1.27.0 | ||
golang.org/x/crypto v0.27.0 // indirect | ||
golang.org/x/crypto v0.33.0 // indirect | ||
) | ||
|
||
require ( | ||
github.com/KimMachineGun/automemlimit v0.6.1 | ||
github.com/KimMachineGun/automemlimit v0.7.0 | ||
github.com/dustin/go-humanize v1.0.1 | ||
go.uber.org/zap/exp v0.2.0 | ||
go.uber.org/zap/exp v0.3.0 | ||
) | ||
|
||
require ( | ||
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.14.0 // indirect | ||
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.7.0 // indirect | ||
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.17.0 // indirect | ||
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.1 // indirect | ||
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect | ||
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resourcegraph/armresourcegraph v0.9.0 // indirect | ||
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect | ||
github.com/AzureAD/microsoft-authentication-library-for-go v1.3.3 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/cilium/ebpf v0.9.1 // indirect | ||
github.com/containerd/cgroups/v3 v3.0.1 // indirect | ||
github.com/coreos/go-systemd/v22 v22.3.2 // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/godbus/dbus/v5 v5.0.4 // indirect | ||
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/klauspost/compress v1.17.9 // indirect | ||
github.com/klauspost/compress v1.17.11 // indirect | ||
github.com/kylelemons/godebug v1.1.0 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/opencontainers/runtime-spec v1.0.2 // indirect | ||
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect | ||
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect | ||
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect | ||
github.com/prometheus/client_model v0.6.1 // indirect | ||
github.com/prometheus/procfs v0.15.1 // indirect | ||
github.com/remeh/sizedwaitgroup v1.0.0 // indirect | ||
github.com/rickb777/plural v1.4.2 // indirect | ||
github.com/sirupsen/logrus v1.8.1 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/net v0.29.0 // indirect | ||
golang.org/x/sys v0.25.0 // indirect | ||
golang.org/x/text v0.18.0 // indirect | ||
google.golang.org/protobuf v1.34.2 // indirect | ||
k8s.io/apimachinery v0.31.1 // indirect | ||
golang.org/x/net v0.34.0 // indirect | ||
golang.org/x/sys v0.30.0 // indirect | ||
golang.org/x/text v0.22.0 // indirect | ||
google.golang.org/protobuf v1.36.5 // indirect | ||
k8s.io/apimachinery v0.32.1 // indirect | ||
k8s.io/klog/v2 v2.130.1 // indirect | ||
k8s.io/utils v0.0.0-20240902221715-702e33fdd3c3 // indirect | ||
k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters