legitbot 1.13.0 → 1.13.3

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: 997d2f1450b83a076215f798f9f6d3aad707047ae625e97a42b11f32b0370d53
4
- data.tar.gz: bcecf8e39cd6040a616539b93813ad59eb63e781e65873a06af8cb09c817aba0
3
+ metadata.gz: 77ce2a12ef0e92ceab281f76ebc067ac2250fb48f6a77902ce2f5e86b74918db
4
+ data.tar.gz: 9ab3ca64adff9a54ed66e01824f2e2e6490d68b7daf2f0ef5cb200eebca8476f
5
5
  SHA512:
6
- metadata.gz: f8761fac855610b44cc896b04a037b45ebb288205b465699e9759f45b2729a6930f612f29b463f75046a3dcf01823d36bb0e645231837baee5058ba12d8a77b0
7
- data.tar.gz: 8bd0acc57a5402715ce70e251837db3483777db44f360faced2a0b11b4785d25d660edd381d60d1ae0ad12eea0547adbb99d3636d43913afcf407f5d9e1e430f
6
+ metadata.gz: bca75b4de5bc32f9a5b2fcbccc37695920a3e8dee2a7d6b5d6d8e3e59c9be35240315b1cb3b7c2ddeb9c9412322626e69e3fc0ce12432ce8189a7aa5c4cb5183
7
+ data.tar.gz: 9a7f4c05f864a8f29e1d1a89e31f1b0a33cd5f79f08125b28b3d7580aabb14eb2de9183f9853b4b9f1f855e3f228cb8451f7366f4ff2fd1134b2d9bfa7a969a5
@@ -9,20 +9,23 @@ on:
9
9
  jobs:
10
10
  lint:
11
11
  runs-on: ubuntu-latest
12
+ permissions:
13
+ contents: write
14
+ pull-requests: write
12
15
 
13
16
  steps:
14
- - uses: actions/checkout@v5
17
+ - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
18
+ with:
19
+ persist-credentials: false
15
20
  - name: Set up Ruby
16
- uses: ruby/setup-ruby@v1
21
+ uses: ruby/setup-ruby@6aaa311d81eba98ae12eaffbcb63296ace0efcde # v1.307.0
17
22
  with:
18
23
  bundler-cache: true
19
- - name: Run tests
20
- run: bundle exec rake test
21
24
  - name: Run linter
22
- run: bundle exec rubocop -A
25
+ run: bundle exec rubocop --only Custom/IpRanges -x
23
26
  continue-on-error: true
24
27
  - name: Create Pull Request
25
- uses: peter-evans/create-pull-request@v5
28
+ uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
26
29
  with:
27
30
  branch: update/lint-autocorrect
28
31
  delete-branch: true
@@ -7,6 +7,7 @@ jobs:
7
7
  test:
8
8
  name: Tests
9
9
  runs-on: ubuntu-latest
10
+ permissions: {}
10
11
 
11
12
  strategy:
12
13
  fail-fast: false
@@ -14,9 +15,11 @@ jobs:
14
15
  ruby: [jruby, 3.2, 3.3, 3.4, 4.0]
15
16
 
16
17
  steps:
17
- - uses: actions/checkout@v5
18
+ - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
19
+ with:
20
+ persist-credentials: false
18
21
  - name: Set up Ruby
19
- uses: ruby/setup-ruby@v1
22
+ uses: ruby/setup-ruby@6aaa311d81eba98ae12eaffbcb63296ace0efcde # v1.307.0
20
23
  with:
21
24
  ruby-version: ${{ matrix.ruby }}
22
25
  bundler-cache: true
@@ -27,11 +30,14 @@ jobs:
27
30
  name: Lint
28
31
  needs: test
29
32
  runs-on: ubuntu-latest
33
+ permissions: {}
30
34
 
31
35
  steps:
32
- - uses: actions/checkout@v5
36
+ - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
37
+ with:
38
+ persist-credentials: false
33
39
  - name: Set up Ruby
34
- uses: ruby/setup-ruby@v1
40
+ uses: ruby/setup-ruby@6aaa311d81eba98ae12eaffbcb63296ace0efcde # v1.307.0
35
41
  with:
36
42
  bundler-cache: true
37
43
  - name: Run linter
@@ -17,14 +17,15 @@ jobs:
17
17
  contents: write
18
18
 
19
19
  steps:
20
- - uses: actions/checkout@v5
20
+ - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
21
21
  with:
22
22
  persist-credentials: false
23
23
  - name: Set up Ruby
24
- uses: ruby/setup-ruby@v1
24
+ uses: ruby/setup-ruby@6aaa311d81eba98ae12eaffbcb63296ace0efcde # v1.307.0
25
25
  with:
26
- bundler-cache: true
26
+ bundler-cache: false
27
+ - run: bundle install
27
28
  - name: Run tests
28
29
  run: bundle exec rake test
29
30
  - name: Publish
30
- uses: rubygems/release-gem@v1
31
+ uses: rubygems/release-gem@6317d8d1f7e28c24d28f6eff169ea854948bd9f7 # v1.2.0
@@ -0,0 +1,20 @@
1
+ name: GitHub Actions
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
+
9
+ jobs:
10
+ gha-scan:
11
+ name: Security Scan
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ security-events: write
15
+
16
+ steps:
17
+ - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
18
+ with:
19
+ persist-credentials: false
20
+ - uses: zizmorcore/zizmor-action@b572f7b1a1c2d41efaab43d504f68d215c3cd727 # v0.5.4
data/.rubocop.yml CHANGED
@@ -25,4 +25,5 @@ Style/RedundantParentheses:
25
25
  Enabled: false
26
26
 
27
27
  Custom/IpRanges:
28
- Enabled: true
28
+ # Run in a dedicated GitHub workflow
29
+ Enabled: false
@@ -9,8 +9,13 @@ module Legitbot # :nodoc:
9
9
  ip_ranges %w[
10
10
  4.144.182.50
11
11
  4.150.142.218
12
+ 4.156.30.123
12
13
  4.156.136.79
13
14
  4.156.154.107
15
+ 4.157.77.76
16
+ 4.172.49.103
17
+ 4.177.16.196
18
+ 4.182.10.198
14
19
  4.182.131.108
15
20
  4.195.133.120
16
21
  4.201.125.59
@@ -21,20 +26,28 @@ module Legitbot # :nodoc:
21
26
  4.207.220.92
22
27
  4.209.224.56
23
28
  4.213.46.14
29
+ 4.226.40.135
24
30
  4.228.76.163
31
+ 4.237.244.80
32
+ 4.248.234.26
25
33
  4.249.216.104
34
+ 4.254.123.56
26
35
  4.255.35.121
36
+ 13.86.35.212
27
37
  13.89.106.77
28
38
  20.3.1.178
29
39
  20.8.252.26
30
40
  20.12.141.99
31
41
  20.13.44.19
42
+ 20.23.88.231
32
43
  20.40.133.240
44
+ 20.40.147.172
33
45
  20.43.150.85
34
46
  20.43.150.93
35
47
  20.43.152.28
36
48
  20.43.172.120
37
49
  20.44.222.1
50
+ 20.49.129.236
38
51
  20.49.136.28
39
52
  20.50.48.159
40
53
  20.50.48.192
@@ -64,6 +77,7 @@ module Legitbot # :nodoc:
64
77
  20.54.224.39
65
78
  20.56.197.58
66
79
  20.56.197.63
80
+ 20.59.0.65
67
81
  20.61.34.40
68
82
  20.61.142.192
69
83
  20.62.224.44
@@ -71,21 +85,34 @@ module Legitbot # :nodoc:
71
85
  20.69.129.205
72
86
  20.69.131.45
73
87
  20.71.12.143
88
+ 20.71.69.210
89
+ 20.72.203.250
90
+ 20.72.221.45
74
91
  20.72.242.93
75
92
  20.73.132.240
76
93
  20.73.202.147
77
94
  20.75.144.152
95
+ 20.77.146.108
78
96
  20.79.226.26
79
97
  20.79.238.198
80
98
  20.79.239.66
81
99
  20.80.129.80
100
+ 20.80.135.7
82
101
  20.80.156.88
102
+ 20.82.24.207
83
103
  20.93.28.24
104
+ 20.99.154.113
84
105
  20.99.255.235
106
+ 20.100.136.36
107
+ 20.100.140.155
108
+ 20.101.17.173
85
109
  20.112.58.44
86
110
  20.113.3.121
87
111
  20.113.14.159
112
+ 20.118.11.251
88
113
  20.166.171.150
114
+ 20.170.75.54
115
+ 20.175.232.228
89
116
  20.185.79.15
90
117
  20.185.79.47
91
118
  20.191.44.16
@@ -119,13 +146,18 @@ module Legitbot # :nodoc:
119
146
  20.207.99.197
120
147
  20.207.107.181
121
148
  20.212.90.107
149
+ 20.216.200.223
122
150
  20.219.43.246
123
151
  20.219.45.67
124
152
  20.219.45.190
125
153
  20.226.133.105
154
+ 20.231.254.179
126
155
  20.232.51.46
156
+ 20.242.135.165
157
+ 20.250.51.113
127
158
  20.252.16.193
128
159
  20.253.59.76
160
+ 20.253.96.199
129
161
  40.64.105.247
130
162
  40.64.106.11
131
163
  40.76.162.191
@@ -135,6 +167,7 @@ module Legitbot # :nodoc:
135
167
  40.76.163.23
136
168
  40.76.173.151
137
169
  40.81.250.205
170
+ 40.82.218.203
138
171
  40.88.21.235
139
172
  40.89.243.175
140
173
  40.114.182.45
@@ -148,7 +181,9 @@ module Legitbot # :nodoc:
148
181
  40.119.232.215
149
182
  40.119.232.218
150
183
  40.119.232.251
184
+ 40.121.121.54
151
185
  40.127.154.196
186
+ 48.200.33.227
152
187
  48.204.32.87
153
188
  48.217.23.236
154
189
  48.217.129.210
@@ -187,6 +222,7 @@ module Legitbot # :nodoc:
187
222
  51.138.90.161
188
223
  51.138.90.206
189
224
  51.138.90.233
225
+ 51.145.185.16
190
226
  52.142.24.149
191
227
  52.142.26.175
192
228
  52.143.95.162
@@ -196,6 +232,7 @@ module Legitbot # :nodoc:
196
232
  52.143.243.117
197
233
  52.143.244.81
198
234
  52.143.247.235
235
+ 52.146.57.51
199
236
  52.146.58.236
200
237
  52.146.59.12
201
238
  52.146.59.154
@@ -237,6 +274,7 @@ module Legitbot # :nodoc:
237
274
  52.154.171.235
238
275
  52.154.171.250
239
276
  52.154.172.2
277
+ 52.154.204.93
240
278
  52.186.37.211
241
279
  52.188.89.106
242
280
  52.190.37.160
@@ -263,13 +301,17 @@ module Legitbot # :nodoc:
263
301
  52.224.21.53
264
302
  52.224.21.55
265
303
  52.224.21.61
304
+ 52.224.191.245
266
305
  52.242.224.168
267
306
  52.250.46.221
268
307
  57.152.72.128
269
308
  57.155.18.44
309
+ 57.167.88.38
310
+ 64.236.93.100
270
311
  64.236.118.43
271
312
  68.219.152.220
272
313
  74.179.232.116
314
+ 74.242.194.48
273
315
  104.43.54.127
274
316
  104.43.55.116
275
317
  104.43.55.117
@@ -277,9 +319,15 @@ module Legitbot # :nodoc:
277
319
  104.43.55.167
278
320
  108.141.83.74
279
321
  128.203.132.152
322
+ 128.203.214.241
280
323
  130.107.228.224
324
+ 131.145.39.118
325
+ 131.189.183.241
281
326
  132.164.209.198
327
+ 132.220.1.71
328
+ 134.33.207.189
282
329
  135.234.221.112
330
+ 172.168.43.43
283
331
  172.168.53.53
284
332
  172.168.115.250
285
333
  172.168.227.120
@@ -288,6 +336,8 @@ module Legitbot # :nodoc:
288
336
  172.169.28.184
289
337
  172.169.60.134
290
338
  172.169.177.131
339
+ 172.189.40.18
340
+ 172.193.197.146
291
341
  172.193.245.229
292
342
  172.194.141.49
293
343
  172.199.55.212
@@ -310,8 +360,12 @@ module Legitbot # :nodoc:
310
360
  ip_ranges %w[
311
361
  4.144.182.50
312
362
  4.150.142.218
363
+ 4.156.30.123
313
364
  4.156.136.79
314
365
  4.156.154.107
366
+ 4.172.49.103
367
+ 4.177.16.196
368
+ 4.182.10.198
315
369
  4.182.131.108
316
370
  4.195.133.120
317
371
  4.201.125.59
@@ -322,20 +376,27 @@ module Legitbot # :nodoc:
322
376
  4.207.220.92
323
377
  4.209.224.56
324
378
  4.213.46.14
379
+ 4.226.40.135
325
380
  4.228.76.163
381
+ 4.237.244.80
382
+ 4.248.234.26
326
383
  4.249.216.104
384
+ 4.254.123.56
327
385
  4.255.35.121
386
+ 13.86.35.212
328
387
  13.89.106.77
329
388
  20.3.1.178
330
389
  20.8.252.26
331
390
  20.12.141.99
332
391
  20.13.44.19
333
392
  20.40.133.240
393
+ 20.40.147.172
334
394
  20.43.150.85
335
395
  20.43.150.93
336
396
  20.43.152.28
337
397
  20.43.172.120
338
398
  20.44.222.1
399
+ 20.49.129.236
339
400
  20.49.136.28
340
401
  20.50.48.159
341
402
  20.50.48.192
@@ -365,6 +426,7 @@ module Legitbot # :nodoc:
365
426
  20.54.224.39
366
427
  20.56.197.58
367
428
  20.56.197.63
429
+ 20.59.0.65
368
430
  20.61.34.40
369
431
  20.61.142.192
370
432
  20.62.224.44
@@ -372,21 +434,33 @@ module Legitbot # :nodoc:
372
434
  20.69.129.205
373
435
  20.69.131.45
374
436
  20.71.12.143
437
+ 20.71.69.210
438
+ 20.72.203.250
439
+ 20.72.221.45
375
440
  20.72.242.93
376
441
  20.73.132.240
377
442
  20.73.202.147
378
443
  20.75.144.152
444
+ 20.77.146.108
379
445
  20.79.226.26
380
446
  20.79.238.198
381
447
  20.79.239.66
382
448
  20.80.129.80
449
+ 20.80.135.7
383
450
  20.80.156.88
384
451
  20.93.28.24
452
+ 20.99.154.113
385
453
  20.99.255.235
454
+ 20.100.136.36
455
+ 20.100.140.155
456
+ 20.101.17.173
386
457
  20.112.58.44
387
458
  20.113.3.121
388
459
  20.113.14.159
460
+ 20.118.11.251
389
461
  20.166.171.150
462
+ 20.170.75.54
463
+ 20.175.232.228
390
464
  20.185.79.15
391
465
  20.185.79.47
392
466
  20.191.44.16
@@ -420,13 +494,17 @@ module Legitbot # :nodoc:
420
494
  20.207.99.197
421
495
  20.207.107.181
422
496
  20.212.90.107
497
+ 20.216.200.223
423
498
  20.219.43.246
424
499
  20.219.45.67
425
500
  20.219.45.190
426
501
  20.226.133.105
427
502
  20.232.51.46
503
+ 20.242.135.165
504
+ 20.250.51.113
428
505
  20.252.16.193
429
506
  20.253.59.76
507
+ 20.253.96.199
430
508
  40.64.105.247
431
509
  40.64.106.11
432
510
  40.76.162.191
@@ -436,6 +514,7 @@ module Legitbot # :nodoc:
436
514
  40.76.163.23
437
515
  40.76.173.151
438
516
  40.81.250.205
517
+ 40.82.218.203
439
518
  40.88.21.235
440
519
  40.89.243.175
441
520
  40.114.182.45
@@ -449,7 +528,9 @@ module Legitbot # :nodoc:
449
528
  40.119.232.215
450
529
  40.119.232.218
451
530
  40.119.232.251
531
+ 40.121.121.54
452
532
  40.127.154.196
533
+ 48.200.33.227
453
534
  48.204.32.87
454
535
  48.217.23.236
455
536
  48.217.129.210
@@ -497,6 +578,7 @@ module Legitbot # :nodoc:
497
578
  52.143.243.117
498
579
  52.143.244.81
499
580
  52.143.247.235
581
+ 52.146.57.51
500
582
  52.146.58.236
501
583
  52.146.59.12
502
584
  52.146.59.154
@@ -538,6 +620,7 @@ module Legitbot # :nodoc:
538
620
  52.154.171.235
539
621
  52.154.171.250
540
622
  52.154.172.2
623
+ 52.154.204.93
541
624
  52.186.37.211
542
625
  52.188.89.106
543
626
  52.190.37.160
@@ -564,13 +647,17 @@ module Legitbot # :nodoc:
564
647
  52.224.21.53
565
648
  52.224.21.55
566
649
  52.224.21.61
650
+ 52.224.191.245
567
651
  52.242.224.168
568
652
  52.250.46.221
569
653
  57.152.72.128
570
654
  57.155.18.44
655
+ 57.167.88.38
656
+ 64.236.93.100
571
657
  64.236.118.43
572
658
  68.219.152.220
573
659
  74.179.232.116
660
+ 74.242.194.48
574
661
  104.43.54.127
575
662
  104.43.55.116
576
663
  104.43.55.117
@@ -578,9 +665,15 @@ module Legitbot # :nodoc:
578
665
  104.43.55.167
579
666
  108.141.83.74
580
667
  128.203.132.152
668
+ 128.203.214.241
581
669
  130.107.228.224
670
+ 131.145.39.118
671
+ 131.189.183.241
582
672
  132.164.209.198
673
+ 132.220.1.71
674
+ 134.33.207.189
583
675
  135.234.221.112
676
+ 172.168.43.43
584
677
  172.168.53.53
585
678
  172.168.115.250
586
679
  172.168.227.120
@@ -589,6 +682,8 @@ module Legitbot # :nodoc:
589
682
  172.169.28.184
590
683
  172.169.60.134
591
684
  172.169.177.131
685
+ 172.189.40.18
686
+ 172.193.197.146
592
687
  172.193.245.229
593
688
  172.194.141.49
594
689
  172.199.55.212
@@ -31,7 +31,7 @@ module Legitbot # :nodoc:
31
31
  end
32
32
 
33
33
  # https://platform.openai.com/docs/bots
34
- # rubocop:disable Metrics/ClassLength
34
+ # rubocop:disable Metrics/ClassLength, Metrics/CollectionLiteralLength
35
35
  class OpenAIChat < BotMatch
36
36
  # @fetch:url https://openai.com/chatgpt-user.json
37
37
  # @fetch:jsonpath $.prefixes[*].ipv4Prefix
@@ -53,8 +53,10 @@ module Legitbot # :nodoc:
53
53
  4.198.72.16/28
54
54
  4.205.128.176/28
55
55
  4.226.226.32/28
56
+ 9.129.0.0/17
56
57
  9.160.163.224/28
57
58
  9.160.164.128/28
59
+ 9.234.96.192/28
58
60
  13.65.138.96/28
59
61
  13.65.138.112/28
60
62
  13.67.72.16/28
@@ -71,11 +73,14 @@ module Legitbot # :nodoc:
71
73
  20.27.94.128/28
72
74
  20.42.250.32/28
73
75
  20.45.178.144/28
76
+ 20.52.125.160/28
77
+ 20.55.129.0/28
74
78
  20.55.229.144/28
79
+ 20.57.199.192/28
75
80
  20.63.221.64/28
81
+ 20.79.59.112/28
76
82
  20.97.189.96/28
77
83
  20.102.212.144/28
78
- 20.113.218.16/28
79
84
  20.113.225.112/28
80
85
  20.125.112.224/28
81
86
  20.125.144.144/28
@@ -101,6 +106,7 @@ module Legitbot # :nodoc:
101
106
  20.169.86.224/28
102
107
  20.169.86.240/28
103
108
  20.169.87.112/28
109
+ 20.170.184.16/28
104
110
  20.172.29.32/28
105
111
  20.193.50.32/28
106
112
  20.193.233.240/28
@@ -157,6 +163,7 @@ module Legitbot # :nodoc:
157
163
  40.84.221.224/28
158
164
  40.116.73.208/28
159
165
  40.122.235.112/28
166
+ 48.193.44.32/28
160
167
  51.8.155.48/28
161
168
  51.8.155.64/28
162
169
  51.8.155.80/28
@@ -164,10 +171,14 @@ module Legitbot # :nodoc:
164
171
  51.116.2.64/28
165
172
  51.116.2.80/28
166
173
  52.148.129.32/28
174
+ 52.153.130.48/28
175
+ 52.153.130.64/28
167
176
  52.154.22.48/28
168
177
  52.156.77.144/28
169
178
  52.159.227.32/28
170
179
  52.159.249.96/28
180
+ 52.161.49.96/28
181
+ 52.161.49.224/28
171
182
  52.165.212.16/28
172
183
  52.165.212.32/28
173
184
  52.165.212.48/28
@@ -199,6 +210,7 @@ module Legitbot # :nodoc:
199
210
  52.231.49.48/28
200
211
  52.231.50.64/28
201
212
  52.236.94.144/28
213
+ 52.241.146.208/28
202
214
  52.242.132.224/28
203
215
  52.242.132.240/28
204
216
  52.242.245.208/28
@@ -226,6 +238,7 @@ module Legitbot # :nodoc:
226
238
  68.221.67.224/28
227
239
  68.221.67.240/28
228
240
  68.221.75.16/28
241
+ 70.153.76.16/28
229
242
  74.7.35.48/28
230
243
  74.7.35.112/28
231
244
  74.7.36.64/28
@@ -247,6 +260,8 @@ module Legitbot # :nodoc:
247
260
  138.91.30.48/28
248
261
  138.91.46.96/28
249
262
  168.63.252.240/28
263
+ 172.170.8.208/28
264
+ 172.171.4.176/28
250
265
  172.178.140.144/28
251
266
  172.178.141.112/28
252
267
  172.178.141.128/28
@@ -257,11 +272,10 @@ module Legitbot # :nodoc:
257
272
  172.204.16.64/28
258
273
  172.204.27.16/28
259
274
  172.212.159.64/28
275
+ 172.212.172.160/28
260
276
  172.213.11.144/28
261
- 172.213.12.112/28
262
277
  172.213.21.16/28
263
- 172.213.21.112/28
264
- 172.213.21.144/28
278
+ 172.215.215.32/28
265
279
  172.215.218.96/28
266
280
  191.233.1.112/28
267
281
  191.233.1.128/28
@@ -278,7 +292,7 @@ module Legitbot # :nodoc:
278
292
  191.239.245.16/28
279
293
  ]
280
294
  end
281
- # rubocop:enable Metrics/ClassLength
295
+ # rubocop:enable Metrics/ClassLength, Metrics/CollectionLiteralLength
282
296
 
283
297
  # https://platform.openai.com/docs/bots
284
298
  class OpenAISearch < BotMatch
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Legitbot
4
- VERSION = '1.13.0'
4
+ VERSION = '1.13.3'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: legitbot
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.0
4
+ version: 1.13.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Azarov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-05-02 00:00:00.000000000 Z
11
+ date: 2026-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fast_interval_tree
@@ -81,6 +81,7 @@ files:
81
81
  - ".github/workflows/autocorrect.yml"
82
82
  - ".github/workflows/pr.yml"
83
83
  - ".github/workflows/release.yml"
84
+ - ".github/workflows/scan-gha.yml"
84
85
  - ".gitignore"
85
86
  - ".rubocop.yml"
86
87
  - ".ruby-version"