Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request #164 from Nike-Inc/dep/dependency_upgrade_staging
Browse files Browse the repository at this point in the history
Updated dependencies
  • Loading branch information
shawn-sher authored May 20, 2022
2 parents a76d79a + f507268 commit a278cfa
Show file tree
Hide file tree
Showing 896 changed files with 153,891 additions and 16,158 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
runs-on: ubuntu-18.04
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ^1.17
env:
GOPATH: /home/runner/work/cerberus-go-client/cerberus-go-client/go
GOBIN: /home/runner/work/cerberus-go-client/cerbeurs-go-client/go/bin
- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v3.0.2
with:
path: go/src/cerberus-go-client
- name: Test v1
Expand All @@ -32,14 +32,14 @@ jobs:
cd go/src/cerberus-go-client/v3
make test 2>&1
- name: Upload coverage report to CodeCov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3.1.0
with:
file: go/src/cerberus-go-client/coverage.txt # optional
fail_ci_if_error: true # optional (default = false)
verbose: true
- name: Slack notification when master build fails
if: ${{ failure() && github.ref == 'refs/heads/master'}}
uses: rtCamp/action-slack-notify@v2.1.2
uses: rtCamp/action-slack-notify@v2.2.0
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_CHANNEL: cerberus-alerts
Expand Down
2 changes: 1 addition & 1 deletion api/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
)

// ClientHeader is the header version for all requests. It should be updated on version bumps
const ClientHeader = "CerberusGoClient/2.5.0"
const ClientHeader = "CerberusGoClient/2.5.1"

// AuthStatus is the status of a UserAuthResponse
type AuthStatus string
Expand Down
9 changes: 8 additions & 1 deletion v3/Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
install:
dep ensure -v

vendor:
go mod vendor -v

test:
go test -v ./api ./auth ./cerberus ./utils -coverprofile=profile.out -covermode=atomic
cat profile.out >> ../coverage.txt
rm profile.out

clean:
go clean
rm -rfv vendor

.PHONY: test clean
.PHONY: test clean
2 changes: 1 addition & 1 deletion v3/api/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
)

// ClientHeader is the header version for all requests. It should be updated on version bumps
const ClientHeader = "CerberusGoClient/3.0.6"
const ClientHeader = "CerberusGoClient/3.0.7"

// AuthStatus is the status of a UserAuthResponse
type AuthStatus string
Expand Down
59 changes: 42 additions & 17 deletions v3/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,40 +3,65 @@ module github.com/Nike-Inc/cerberus-go-client/v3
go 1.17

require (
github.com/aws/aws-sdk-go v1.38.43
github.com/aws/aws-sdk-go v1.44.16
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/google/go-cmp v0.5.5
github.com/hashicorp/vault/api v1.1.0
github.com/google/go-cmp v0.5.8
github.com/hashicorp/vault/api v1.5.0
github.com/satori/go.uuid v1.2.1-0.20181028125025-b2ce2384e17b
github.com/sirupsen/logrus v1.8.1
github.com/smartystreets/goconvey v1.6.4
github.com/smartystreets/goconvey v1.7.2
github.com/taskcluster/httpbackoff v1.0.0
)

require (
github.com/golang/snappy v0.0.3 // indirect
github.com/gopherjs/gopherjs v0.0.0-20210503212227-fb464eba2686 // indirect
github.com/armon/go-metrics v0.3.9 // indirect
github.com/armon/go-radix v1.0.0 // indirect
github.com/cenkalti/backoff/v3 v3.0.0 // indirect
github.com/fatih/color v1.7.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-hclog v0.16.2 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-retryablehttp v0.7.0 // indirect
github.com/hashicorp/go-plugin v1.4.3 // indirect
github.com/hashicorp/go-retryablehttp v0.6.6 // indirect
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
github.com/hashicorp/go-secure-stdlib/mlock v0.1.1 // indirect
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.1 // indirect
github.com/hashicorp/go-secure-stdlib/strutil v0.1.1 // indirect
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
github.com/hashicorp/go-uuid v1.0.2 // indirect
github.com/hashicorp/go-version v1.2.0 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hashicorp/vault/sdk v0.2.0 // indirect
github.com/hashicorp/vault/sdk v0.4.1 // indirect
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/jtolds/gls v4.20.0+incompatible // indirect
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/mitchellh/copystructure v1.0.0 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/mapstructure v1.4.1 // indirect
github.com/pierrec/lz4 v2.6.0+incompatible // indirect
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
github.com/mitchellh/mapstructure v1.4.2 // indirect
github.com/mitchellh/reflectwalk v1.0.0 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/oklog/run v1.0.0 // indirect
github.com/pierrec/lz4 v2.5.2+incompatible // indirect
github.com/ryanuber/go-glob v1.0.0 // indirect
github.com/smartystreets/assertions v1.2.0 // indirect
github.com/stretchr/testify v1.7.0 // indirect
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect
golang.org/x/net v0.0.0-20210510120150-4163338589ed // indirect
golang.org/x/sys v0.0.0-20210514084401-e8d321eab015 // indirect
golang.org/x/text v0.3.6 // indirect
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
go.uber.org/atomic v1.9.0 // indirect
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1 // indirect
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
google.golang.org/grpc v1.41.0 // indirect
google.golang.org/protobuf v1.26.0 // indirect
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
)
Loading

0 comments on commit a278cfa

Please sign in to comment.