-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Retry on http status unauthorized (#152)
Similar workaround to fastlane/fastlane#21507 (comment). Retry HTTP calls when 401 is (randomly) returned by Google, that causes customer impact.
- Loading branch information
Showing
855 changed files
with
130,028 additions
and
32,464 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.bitrise* | ||
_tmp/ | ||
.idea | ||
steps-google-play-deploy |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,36 @@ | ||
module github.com/bitrise-steplib/steps-google-play-deploy | ||
|
||
go 1.16 | ||
go 1.20 | ||
|
||
require ( | ||
cloud.google.com/go v0.90.0 // indirect | ||
github.com/bitrise-io/go-steputils v0.0.0-20210527075147-910ce7a105a1 | ||
github.com/bitrise-io/go-utils v0.0.0-20210713111255-08be784d45d0 | ||
github.com/bitrise-io/go-steputils v1.0.6 | ||
github.com/bitrise-io/go-utils v1.0.9 | ||
github.com/stretchr/testify v1.8.4 | ||
golang.org/x/oauth2 v0.12.0 | ||
google.golang.org/api v0.141.0 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/compute v1.23.0 // indirect | ||
cloud.google.com/go/compute/metadata v0.2.3 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/s2a-go v0.1.7 // indirect | ||
github.com/google/uuid v1.3.1 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.2.5 // indirect | ||
github.com/googleapis/gax-go/v2 v2.12.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.0 // indirect | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d // indirect | ||
golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a | ||
golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e // indirect | ||
google.golang.org/api v0.52.0 | ||
google.golang.org/genproto v0.0.0-20210809142519-0135a39c2737 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.4 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
golang.org/x/crypto v0.13.0 // indirect | ||
golang.org/x/net v0.15.0 // indirect | ||
golang.org/x/sys v0.12.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230913181813-007df8e322eb // indirect | ||
google.golang.org/grpc v1.58.1 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.