Skip to content

Commit 66948f2

Browse files
committed
switch to golang 1.19
Signed-off-by: Markus Blaschke <[email protected]>
1 parent a39253e commit 66948f2

File tree

2 files changed

+11
-14
lines changed

2 files changed

+11
-14
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#############################################
22
# Build
33
#############################################
4-
FROM --platform=$BUILDPLATFORM golang:1.18-alpine as build
4+
FROM --platform=$BUILDPLATFORM golang:1.19-alpine as build
55

66
RUN apk upgrade --no-cache --force
77
RUN apk add --update build-base make git

go.mod

+10-13
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,17 @@
11
module github.com/webdevops/azure-keyvault-exporter
22

3-
go 1.18
4-
5-
require (
6-
github.com/golang/protobuf v1.5.2 // indirect
7-
github.com/jessevdk/go-flags v1.5.0
8-
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
9-
github.com/prometheus/client_golang v1.13.0
10-
github.com/prometheus/common v0.37.0 // indirect
11-
github.com/sirupsen/logrus v1.9.0
12-
github.com/webdevops/go-common v0.0.0-20220807131626-ccf56fcd7f3a
13-
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
14-
golang.org/x/sys v0.0.0-20220804214406-8e32c043e418 // indirect
15-
)
3+
go 1.19
164

175
require (
186
github.com/Azure/azure-sdk-for-go/sdk/keyvault/azcertificates v0.5.0
197
github.com/Azure/azure-sdk-for-go/sdk/keyvault/azkeys v0.6.0
208
github.com/Azure/azure-sdk-for-go/sdk/keyvault/azsecrets v0.8.0
219
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/keyvault/armkeyvault v1.0.0
2210
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armsubscriptions v1.0.0
11+
github.com/jessevdk/go-flags v1.5.0
12+
github.com/prometheus/client_golang v1.13.0
13+
github.com/sirupsen/logrus v1.9.0
14+
github.com/webdevops/go-common v0.0.0-20220807131626-ccf56fcd7f3a
2315
)
2416

2517
require (
@@ -32,15 +24,20 @@ require (
3224
github.com/beorn7/perks v1.0.1 // indirect
3325
github.com/cespare/xxhash/v2 v2.1.2 // indirect
3426
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
27+
github.com/golang/protobuf v1.5.2 // indirect
3528
github.com/google/uuid v1.3.0 // indirect
3629
github.com/kylelemons/godebug v1.1.0 // indirect
30+
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
3731
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
3832
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect
3933
github.com/prometheus/client_model v0.2.0 // indirect
34+
github.com/prometheus/common v0.37.0 // indirect
4035
github.com/prometheus/procfs v0.8.0 // indirect
4136
github.com/remeh/sizedwaitgroup v1.0.0 // indirect
4237
github.com/robfig/cron v1.2.0 // indirect
38+
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
4339
golang.org/x/net v0.0.0-20220805013720-a33c5aa5df48 // indirect
40+
golang.org/x/sys v0.0.0-20220804214406-8e32c043e418 // indirect
4441
golang.org/x/text v0.3.7 // indirect
4542
google.golang.org/protobuf v1.28.1 // indirect
4643
)

0 commit comments

Comments
 (0)