Skip to content

Commit

Permalink
Merge pull request #29 from YaleSpinup/UpdateCostAPIpackages
Browse files Browse the repository at this point in the history
Support for GO version and package update
  • Loading branch information
nvnyale committed Sep 28, 2022
2 parents 1ac7463 + 6acef21 commit 1ade2a8
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 55 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
go-version:
- "1.17.x"
- "1.18.x"
os:
- "ubuntu-latest"

Expand All @@ -24,4 +24,4 @@ jobs:
- name: Test
run: |
go mod tidy -v
go test -cover ./...
go test -cover ./...
23 changes: 11 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,36 +1,35 @@
module github.com/YaleSpinup/cost-api

go 1.17
go 1.18

require (
github.com/YaleSpinup/apierror v0.1.0
github.com/YaleSpinup/aws-go v0.1.0
github.com/aws/aws-sdk-go v1.42.11
github.com/YaleSpinup/aws-go v0.2.0
github.com/aws/aws-sdk-go v1.44.98
github.com/google/uuid v1.3.0
github.com/gorilla/handlers v1.5.1
github.com/gorilla/mux v1.8.0
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.11.0
github.com/prometheus/client_golang v1.13.0
github.com/satori/go.uuid v1.2.0
github.com/sirupsen/logrus v1.8.1
golang.org/x/crypto v0.0.0-20211117183948-ae814b36b871
github.com/sirupsen/logrus v1.9.0
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90
)

require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/felixge/httpsnoop v1.0.2 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.32.1 // indirect
github.com/prometheus/procfs v0.7.3 // indirect
github.com/stretchr/testify v1.7.0 // indirect
golang.org/x/sys v0.0.0-20211123173158-ef496fb156ab // indirect
google.golang.org/protobuf v1.27.1 // indirect
github.com/prometheus/common v0.37.0 // indirect
github.com/prometheus/procfs v0.8.0 // indirect
golang.org/x/sys v0.0.0-20220913175220-63ea55921009 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
)
Loading

0 comments on commit 1ade2a8

Please sign in to comment.