octokit 5.6.0 → 5.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 142651c8cb905616f9b98ef7d87db6e56a729a6ee87cf423f347c6be549d356a
4
- data.tar.gz: d647f6470d7c7c21d9dc589018a181225a51fe45913cb323704d9ddb01cecd1f
3
+ metadata.gz: bbf0b3ef2f8550628d4bde2fa55f7bcb97261364e94aac9f5a149ce6e86fa019
4
+ data.tar.gz: d336c02e28efb73618c1c24827b2b7703dc5341ce95087467089cf36f11d96fb
5
5
  SHA512:
6
- metadata.gz: a674820129345b669b42d31934f195caeb453344907a4c95a5b11819466c3aba01dc37889e0371703dd0211747ab919b8a60858be0fa4cac7b39df261de42bd7
7
- data.tar.gz: 7f2b1d6165badfe0094c0fffc3b2c176656a0fa11063dafef707595e749d99350cd692910e4f6d4829227bdd0e505452f8713b8e8bab524dcc94a9989af1f89b
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/workflow-runs#download-workflow-run-logs
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
@@ -11,7 +11,7 @@ module Octokit
11
11
 
12
12
  # Current patch level.
13
13
  # @return [Integer]
14
- PATCH = 0
14
+ PATCH = 1
15
15
 
16
16
  # Full release version.
17
17
  # @return [String]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: octokit
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.6.0
4
+ version: 5.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wynn Netherland