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:
1515 - name : Set up Go
1616 uses : actions/setup-go@v4
1717 with :
18- go-version : 1.15
18+ go-version : ' 1.20 '
1919
2020 - name : Build
2121 run : go build -v ./...
2222
2323 - name : Test
2424 run : go test -v ./...
2525
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 1515 - name : Set up Go
1616 uses : actions/setup-go@v4
1717 with :
18- go-version : 1.15
18+ go-version : ' 1.20 '
1919 - name : Run GoReleaser
2020 uses : goreleaser/goreleaser-action@v4
2121 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
22
33WORKDIR /go/src
44
Original file line number Diff line number Diff line change 11module github.com/chaspy/aws-ecr-image-scan-findings-prometheus-exporter
22
3- go 1.15
3+ go 1.20
44
55require (
66 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
821)
You can’t perform that action at this time.
0 commit comments