dependabot-go_modules 0.93.15 → 0.93.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/dependabot/go_modules/file_parser.rb +8 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b0bfd1e9c5293589324a714713e4eb6aa55f9057038553f1a1208c5a0f5aa100
|
|
4
|
+
data.tar.gz: 0a5bc7f095679bde7103435d7586698a099cd914d517f5f7ca2f418b47d618ee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e60e56562f111e9140202c38fc77c8d39aa373582ae39aeea71ca41fc8798f9d523e82e9b749e1058c0dc7895fcdab29afd9f57dbf805655ae5794c266a030d
|
|
7
|
+
data.tar.gz: e5bd148e00e757233e90dc71a38fb38af402b2af2c12f61ce18c4593554a98c8733159a167a5181d3539bd31d92015c44c18e4311b89ace8a2692fd41ffb3ff8
|
|
@@ -76,6 +76,14 @@ module Dependabot
|
|
|
76
76
|
stdout, stderr, status = Open3.capture3(command)
|
|
77
77
|
handle_parser_error(path, stderr) unless status.success?
|
|
78
78
|
stdout
|
|
79
|
+
rescue Dependabot::DependencyFileNotResolvable
|
|
80
|
+
# We sometimes see this error if a host times out.
|
|
81
|
+
# In such cases, retrying (a maximum of 3 times) may fix it.
|
|
82
|
+
retry_count ||= 0
|
|
83
|
+
raise if retry_count >= 3
|
|
84
|
+
|
|
85
|
+
retry_count += 1
|
|
86
|
+
retry
|
|
79
87
|
end
|
|
80
88
|
end
|
|
81
89
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dependabot-go_modules
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.93.
|
|
4
|
+
version: 0.93.16
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dependabot
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.93.
|
|
19
|
+
version: 0.93.16
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.93.
|
|
26
|
+
version: 0.93.16
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: byebug
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|