Skip to content

Commit 293ab07

Browse files
committed
set go.mod to 1.23
fixes asset builds using still go 1.22 Signed-off-by: Markus Blaschke <mblaschke82@gmail.com>
1 parent 53f942f commit 293ab07

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/webdevops/azure-keyvault-exporter
22

3-
go 1.22.0
4-
5-
toolchain go1.23.1
3+
go 1.23
64

75
require (
86
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/keyvault/armkeyvault v1.4.0

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ var (
4242
func main() {
4343
initArgparser()
4444
initLogger()
45-
initSystem()
4645

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

5050
logger.Infof("init Azure connection")
5151
initAzureConnection()

0 commit comments

Comments
 (0)