circleci-bundle-update-pr 5.2.0 → 5.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3231ac22083eb2dd6e4fca40b4fb7ddbe18ebfe1414457279632d9f520d2f6fd
4
- data.tar.gz: 59a925dbc80ea8f46dbd072a79fadbde0257b1e6da1c656e5aa3396818b90155
3
+ metadata.gz: 2b3f4ad535ac6363335cab053b93a762362b15e5051ebfbea2e4374eabfa249b
4
+ data.tar.gz: a9a376533c1e3627b730cc177e45e87b0ae8d72798d9cd1ccc66dec1416391e4
5
5
  SHA512:
6
- metadata.gz: f4aa5da0153afd5f49c60d00394cadf813641453c9751968ec996c2950dbab3867eae4012139f81bd2bb0ac53cd4239b965fd368e305f92bf3be04faace17f35
7
- data.tar.gz: f5ae169a75e4ea25be9ffa402ac434e90194d87c7755fa6ac987ecdf78adeedee8cc0149672b10e9bc22aad10db39900404f83eee98b4df59b14c36050e3c06d
6
+ metadata.gz: 0f16a1fa30e82bed2a5f1fdb958f4723291f3c71d33f6d0a365d51f5e0083e50ab44cb7e1fafd320129ea2a04b520c2c1ac5f164984d323a550004bfb1d10f72
7
+ data.tar.gz: 4eba2d1798815ad986f44e880c3bc38be4c6acb693a3c3a7fda7d98570e6e7957c32ec1e48f216442f8c25b67deed685f96e783d0c5b7f1d8a8042b49ca94986
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- circleci-bundle-update-pr (5.2.0)
4
+ circleci-bundle-update-pr (5.2.1)
5
5
  compare_linker (>= 1.4.10)
6
6
  octokit
7
7
 
@@ -18,7 +18,7 @@ GEM
18
18
  octokit
19
19
  ostruct
20
20
  diff-lcs (1.6.2)
21
- faraday (2.14.0)
21
+ faraday (2.14.1)
22
22
  faraday-net_http (>= 2.0, < 3.5)
23
23
  json
24
24
  logger
@@ -26,7 +26,7 @@ GEM
26
26
  net-http (~> 0.5)
27
27
  httpclient (2.9.0)
28
28
  mutex_m
29
- json (2.18.0)
29
+ json (2.18.1)
30
30
  language_server-protocol (3.17.0.5)
31
31
  lint_roller (1.1.0)
32
32
  logger (1.7.0)
@@ -38,11 +38,11 @@ GEM
38
38
  sawyer (~> 0.9)
39
39
  ostruct (0.6.3)
40
40
  parallel (1.27.0)
41
- parser (3.3.10.0)
41
+ parser (3.3.10.1)
42
42
  ast (~> 2.4.1)
43
43
  racc
44
- prism (1.7.0)
45
- public_suffix (7.0.0)
44
+ prism (1.9.0)
45
+ public_suffix (7.0.2)
46
46
  racc (1.8.1)
47
47
  rainbow (3.1.1)
48
48
  rake (13.3.1)
@@ -59,8 +59,8 @@ GEM
59
59
  rspec-mocks (3.13.7)
60
60
  diff-lcs (>= 1.2.0, < 2.0)
61
61
  rspec-support (~> 3.13.0)
62
- rspec-support (3.13.6)
63
- rubocop (1.82.1)
62
+ rspec-support (3.13.7)
63
+ rubocop (1.84.0)
64
64
  json (~> 2.3)
65
65
  language_server-protocol (~> 3.17.0.2)
66
66
  lint_roller (~> 1.1.0)
@@ -68,7 +68,7 @@ GEM
68
68
  parser (>= 3.3.0.2)
69
69
  rainbow (>= 2.2.2, < 4.0)
70
70
  regexp_parser (>= 2.9.3, < 3.0)
71
- rubocop-ast (>= 1.48.0, < 2.0)
71
+ rubocop-ast (>= 1.49.0, < 2.0)
72
72
  ruby-progressbar (~> 1.7)
73
73
  unicode-display_width (>= 2.4.0, < 4.0)
74
74
  rubocop-ast (1.49.0)
@@ -77,7 +77,7 @@ GEM
77
77
  rubocop-rake (0.7.1)
78
78
  lint_roller (~> 1.1)
79
79
  rubocop (>= 1.72.1)
80
- rubocop-rspec (3.8.0)
80
+ rubocop-rspec (3.9.0)
81
81
  lint_roller (~> 1.1)
82
82
  rubocop (~> 1.81)
83
83
  ruby-progressbar (1.13.0)
@@ -107,4 +107,4 @@ DEPENDENCIES
107
107
  rubocop-rspec
108
108
 
109
109
  BUNDLED WITH
110
- 4.0.2
110
+ 4.0.3
@@ -4,7 +4,7 @@ module Circleci
4
4
  module Bundle
5
5
  module Update
6
6
  module Pr
7
- VERSION = '5.2.0'
7
+ VERSION = '5.2.1'
8
8
  end
9
9
  end
10
10
  end
@@ -90,8 +90,8 @@ module Circleci
90
90
  def self.need_to_commit?
91
91
  old_lockfile = File.read('Gemfile.lock')
92
92
 
93
- unless system('bundle update && bundle update --ruby')
94
- raise 'Unable to execute `bundle update && bundle update --ruby`'
93
+ unless system('bundle update --all && bundle update --ruby')
94
+ raise 'Unable to execute `bundle update --all && bundle update --ruby`'
95
95
  end
96
96
 
97
97
  new_lockfile = File.read('Gemfile.lock')
@@ -128,7 +128,7 @@ module Circleci
128
128
 
129
129
  commit = client.create_commit(
130
130
  repo_full_name,
131
- '$ bundle update && bundle update --ruby',
131
+ '$ bundle update --all && bundle update --ruby',
132
132
  tree.sha,
133
133
  branch_ref.object.sha,
134
134
  author: {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: circleci-bundle-update-pr
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.0
4
+ version: 5.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takashi Masuda
@@ -132,7 +132,6 @@ files:
132
132
  - ".circleci/config.yml"
133
133
  - ".coderabbit.yaml"
134
134
  - ".github/CODEOWNERS"
135
- - ".github/dependabot.yml"
136
135
  - ".gitignore"
137
136
  - ".rspec"
138
137
  - ".rubocop.yml"
@@ -1,13 +0,0 @@
1
- # https://docs.github.com/code-security/dependabot/working-with-dependabot/dependabot-options-reference
2
- version: 2
3
- updates:
4
- - package-ecosystem: "bundler"
5
- directory: "/"
6
- schedule:
7
- interval: "monthly"
8
- time: "19:00"
9
- timezone: "Asia/Tokyo"
10
- groups:
11
- all:
12
- patterns:
13
- - "*"