circleci-bundle-update-pr 5.1.11 → 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 +4 -4
- data/.circleci/config.yml +14 -11
- data/Gemfile.lock +14 -14
- data/lib/circleci/bundle/update/pr/version.rb +1 -1
- data/lib/circleci/bundle/update/pr.rb +3 -3
- metadata +1 -2
- data/.github/dependabot.yml +0 -13
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2b3f4ad535ac6363335cab053b93a762362b15e5051ebfbea2e4374eabfa249b
|
|
4
|
+
data.tar.gz: a9a376533c1e3627b730cc177e45e87b0ae8d72798d9cd1ccc66dec1416391e4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0f16a1fa30e82bed2a5f1fdb958f4723291f3c71d33f6d0a365d51f5e0083e50ab44cb7e1fafd320129ea2a04b520c2c1ac5f164984d323a550004bfb1d10f72
|
|
7
|
+
data.tar.gz: 4eba2d1798815ad986f44e880c3bc38be4c6acb693a3c3a7fda7d98570e6e7957c32ec1e48f216442f8c25b67deed685f96e783d0c5b7f1d8a8042b49ca94986
|
data/.circleci/config.yml
CHANGED
|
@@ -8,7 +8,7 @@ executors:
|
|
|
8
8
|
parameters:
|
|
9
9
|
ruby_version:
|
|
10
10
|
type: enum
|
|
11
|
-
enum: [
|
|
11
|
+
enum: ["3.0", "3.1", "3.2", "3.3", "3.4", "4.0"]
|
|
12
12
|
docker:
|
|
13
13
|
- image: cimg/ruby:<< parameters.ruby_version >>
|
|
14
14
|
working_directory: ~/repo
|
|
@@ -23,7 +23,7 @@ commands:
|
|
|
23
23
|
parameters:
|
|
24
24
|
ruby_version:
|
|
25
25
|
type: enum
|
|
26
|
-
enum: [
|
|
26
|
+
enum: ["3.0", "3.1", "3.2", "3.3", "3.4", "4.0"]
|
|
27
27
|
steps:
|
|
28
28
|
- restore_cache:
|
|
29
29
|
name: Restore bundle cache
|
|
@@ -34,7 +34,7 @@ commands:
|
|
|
34
34
|
parameters:
|
|
35
35
|
ruby_version:
|
|
36
36
|
type: enum
|
|
37
|
-
enum: [
|
|
37
|
+
enum: ["3.0", "3.1", "3.2", "3.3", "3.4", "4.0"]
|
|
38
38
|
steps:
|
|
39
39
|
- save_cache:
|
|
40
40
|
name: Save bundle cache
|
|
@@ -47,7 +47,7 @@ jobs:
|
|
|
47
47
|
parameters:
|
|
48
48
|
ruby_version:
|
|
49
49
|
type: enum
|
|
50
|
-
enum: [
|
|
50
|
+
enum: ["3.0", "3.1", "3.2", "3.3", "3.4", "4.0"]
|
|
51
51
|
executor:
|
|
52
52
|
name: default
|
|
53
53
|
ruby_version: << parameters.ruby_version >>
|
|
@@ -70,12 +70,12 @@ jobs:
|
|
|
70
70
|
continuous_bundle_update:
|
|
71
71
|
executor:
|
|
72
72
|
name: default
|
|
73
|
-
ruby_version:
|
|
73
|
+
ruby_version: "4.0"
|
|
74
74
|
steps:
|
|
75
75
|
- setup_requirements
|
|
76
76
|
- checkout
|
|
77
77
|
- restore_bundle_cache:
|
|
78
|
-
ruby_version:
|
|
78
|
+
ruby_version: "4.0"
|
|
79
79
|
- run:
|
|
80
80
|
name: Install edge circleci-bundle-update-pr
|
|
81
81
|
command: |
|
|
@@ -92,19 +92,22 @@ workflows:
|
|
|
92
92
|
jobs:
|
|
93
93
|
- build:
|
|
94
94
|
name: ruby-3.0
|
|
95
|
-
ruby_version:
|
|
95
|
+
ruby_version: "3.0"
|
|
96
96
|
- build:
|
|
97
97
|
name: ruby-3.1
|
|
98
|
-
ruby_version:
|
|
98
|
+
ruby_version: "3.1"
|
|
99
99
|
- build:
|
|
100
100
|
name: ruby-3.2
|
|
101
|
-
ruby_version:
|
|
101
|
+
ruby_version: "3.2"
|
|
102
102
|
- build:
|
|
103
103
|
name: ruby-3.3
|
|
104
|
-
ruby_version:
|
|
104
|
+
ruby_version: "3.3"
|
|
105
105
|
- build:
|
|
106
106
|
name: ruby-3.4
|
|
107
|
-
ruby_version:
|
|
107
|
+
ruby_version: "3.4"
|
|
108
|
+
- build:
|
|
109
|
+
name: ruby-4.0
|
|
110
|
+
ruby_version: "4.0"
|
|
108
111
|
nightly:
|
|
109
112
|
triggers:
|
|
110
113
|
- schedule:
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
circleci-bundle-update-pr (5.1
|
|
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.
|
|
21
|
+
faraday (2.14.1)
|
|
22
22
|
faraday-net_http (>= 2.0, < 3.5)
|
|
23
23
|
json
|
|
24
24
|
logger
|
|
@@ -26,23 +26,23 @@ GEM
|
|
|
26
26
|
net-http (~> 0.5)
|
|
27
27
|
httpclient (2.9.0)
|
|
28
28
|
mutex_m
|
|
29
|
-
json (2.
|
|
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)
|
|
33
33
|
mutex_m (0.3.0)
|
|
34
|
-
net-http (0.
|
|
34
|
+
net-http (0.9.1)
|
|
35
35
|
uri (>= 0.11.1)
|
|
36
36
|
octokit (10.0.0)
|
|
37
37
|
faraday (>= 1, < 3)
|
|
38
38
|
sawyer (~> 0.9)
|
|
39
39
|
ostruct (0.6.3)
|
|
40
40
|
parallel (1.27.0)
|
|
41
|
-
parser (3.3.10.
|
|
41
|
+
parser (3.3.10.1)
|
|
42
42
|
ast (~> 2.4.1)
|
|
43
43
|
racc
|
|
44
|
-
prism (1.
|
|
45
|
-
public_suffix (7.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.
|
|
63
|
-
rubocop (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,16 +68,16 @@ 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.
|
|
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
|
-
rubocop-ast (1.
|
|
74
|
+
rubocop-ast (1.49.0)
|
|
75
75
|
parser (>= 3.3.7.2)
|
|
76
|
-
prism (~> 1.
|
|
76
|
+
prism (~> 1.7)
|
|
77
77
|
rubocop-rake (0.7.1)
|
|
78
78
|
lint_roller (~> 1.1)
|
|
79
79
|
rubocop (>= 1.72.1)
|
|
80
|
-
rubocop-rspec (3.
|
|
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
|
-
|
|
110
|
+
4.0.3
|
|
@@ -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.1
|
|
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"
|
data/.github/dependabot.yml
DELETED
|
@@ -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
|
-
- "*"
|