Skip to content

Commit

Permalink
set go.mod to 1.23
Browse files Browse the repository at this point in the history
fixes asset builds using still go 1.22

Signed-off-by: Markus Blaschke <mblaschke82@gmail.com>
  • Loading branch information
mblaschke committed Sep 14, 2024
1 parent 53f942f commit 293ab07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/webdevops/azure-keyvault-exporter

go 1.22.0

toolchain go1.23.1
go 1.23

require (
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/keyvault/armkeyvault v1.4.0
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ var (
func main() {
initArgparser()
initLogger()
initSystem()

logger.Infof("starting azure-keyvault-exporter v%s (%s; %s; by %v)", gitTag, gitCommit, runtime.Version(), Author)
logger.Info(string(Opts.GetJson()))
initSystem()

logger.Infof("init Azure connection")
initAzureConnection()
Expand Down

0 comments on commit 293ab07

Please sign in to comment.