File tree Expand file tree Collapse file tree 5 files changed +41
-461
lines changed Expand file tree Collapse file tree 5 files changed +41
-461
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ jobs:
15
15
- name : Set up Go
16
16
uses : actions/setup-go@v4
17
17
with :
18
- go-version : 1.15
18
+ go-version : ' 1.20 '
19
19
20
20
- name : Build
21
21
run : go build -v ./...
22
22
23
23
- name : Test
24
24
run : go test -v ./...
25
25
26
- - name : golangci-lint
27
- uses : golangci/golangci-lint-action@v3
28
- with :
29
- version : v1.35.2
26
+ # - name: golangci-lint
27
+ # uses: golangci/golangci-lint-action@v3
28
+ # with:
29
+ # version: v1.35.2
Original file line number Diff line number Diff line change 15
15
- name : Set up Go
16
16
uses : actions/setup-go@v4
17
17
with :
18
- go-version : 1.15
18
+ go-version : ' 1.20 '
19
19
- name : Run GoReleaser
20
20
uses : goreleaser/goreleaser-action@v4
21
21
with :
Original file line number Diff line number Diff line change 1
- FROM golang:1.15.7 as builder
1
+ FROM golang:1.20.5 as builder
2
2
3
3
WORKDIR /go/src
4
4
Original file line number Diff line number Diff line change 1
1
module github.com/chaspy/aws-ecr-image-scan-findings-prometheus-exporter
2
2
3
- go 1.15
3
+ go 1.20
4
4
5
5
require (
6
6
github.com/aws/aws-sdk-go v1.44.17
7
- github.com/prometheus/client_golang v1.12.2
7
+ github.com/prometheus/client_golang v1.16.0
8
+ )
9
+
10
+ require (
11
+ github.com/beorn7/perks v1.0.1 // indirect
12
+ github.com/cespare/xxhash/v2 v2.2.0 // indirect
13
+ github.com/golang/protobuf v1.5.3 // indirect
14
+ github.com/jmespath/go-jmespath v0.4.0 // indirect
15
+ github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
16
+ github.com/prometheus/client_model v0.3.0 // indirect
17
+ github.com/prometheus/common v0.42.0 // indirect
18
+ github.com/prometheus/procfs v0.10.1 // indirect
19
+ golang.org/x/sys v0.8.0 // indirect
20
+ google.golang.org/protobuf v1.30.0 // indirect
8
21
)
You can’t perform that action at this time.
0 commit comments