octokit 5.6.0 → 5.6.1
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/octokit/client/actions_artifacts.rb +1 -1
- data/lib/octokit/error.rb +1 -1
- data/lib/octokit/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bbf0b3ef2f8550628d4bde2fa55f7bcb97261364e94aac9f5a149ce6e86fa019
|
|
4
|
+
data.tar.gz: d336c02e28efb73618c1c24827b2b7703dc5341ce95087467089cf36f11d96fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 960aacdc0e1a37794e6bed1a0c5f2686c1dca5160c0802cb449590f92ecab4cf243a0201b65e419fe3ffa38c194f106eceed0d46c90f63ceeb8a4aa14b22d716
|
|
7
|
+
data.tar.gz: 22a81c032d49f11c2f3875bfbc1c577449787d0899f20d0108dc7de868a2b5f1c86163ccebf46eb4a4b2567277c46fd83aca619c071a238746229664894008bf
|
|
@@ -44,7 +44,7 @@ module Octokit
|
|
|
44
44
|
# @param id [Integer] Id of an artifact
|
|
45
45
|
#
|
|
46
46
|
# @return [String] URL to the .zip archive of the artifact
|
|
47
|
-
# @see https://docs.github.com/en/rest/actions/
|
|
47
|
+
# @see https://docs.github.com/en/rest/actions/artifacts#download-an-artifact
|
|
48
48
|
def artifact_download_url(repo, id, options = {})
|
|
49
49
|
url = "#{Repository.path repo}/actions/artifacts/#{id}/zip"
|
|
50
50
|
|
data/lib/octokit/error.rb
CHANGED
|
@@ -77,7 +77,7 @@ module Octokit
|
|
|
77
77
|
Octokit::TooManyRequests
|
|
78
78
|
when /login attempts exceeded/i
|
|
79
79
|
Octokit::TooManyLoginAttempts
|
|
80
|
-
when /returns blobs up to [0-9]+ MB/i
|
|
80
|
+
when /(returns|for) blobs (up to|between) [0-9\-]+ MB/i
|
|
81
81
|
Octokit::TooLargeContent
|
|
82
82
|
when /abuse/i
|
|
83
83
|
Octokit::AbuseDetected
|
data/lib/octokit/version.rb
CHANGED