Skip to content

Commit 713e3aa

Browse files
committed
add fedora 42 and alma 10
1 parent 890a018 commit 713e3aa

File tree

3 files changed

+32
-18
lines changed

3 files changed

+32
-18
lines changed

Gemfile.lock

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -77,28 +77,28 @@ GEM
7777
ast (2.4.3)
7878
authentication-zero (4.0.3)
7979
awesome_print (1.9.2)
80-
aws-eventstream (1.3.2)
81-
aws-partitions (1.1109.0)
82-
aws-sdk-core (3.224.1)
80+
aws-eventstream (1.4.0)
81+
aws-partitions (1.1116.0)
82+
aws-sdk-core (3.225.2)
8383
aws-eventstream (~> 1, >= 1.3.0)
8484
aws-partitions (~> 1, >= 1.992.0)
8585
aws-sigv4 (~> 1.9)
8686
base64
8787
jmespath (~> 1, >= 1.6.1)
8888
logger
89-
aws-sdk-kms (1.101.0)
90-
aws-sdk-core (~> 3, >= 3.216.0)
89+
aws-sdk-kms (1.105.0)
90+
aws-sdk-core (~> 3, >= 3.225.0)
9191
aws-sigv4 (~> 1.5)
92-
aws-sdk-s3 (1.188.0)
93-
aws-sdk-core (~> 3, >= 3.224.1)
92+
aws-sdk-s3 (1.189.1)
93+
aws-sdk-core (~> 3, >= 3.225.0)
9494
aws-sdk-kms (~> 1)
9595
aws-sigv4 (~> 1.5)
96-
aws-sigv4 (1.11.0)
96+
aws-sigv4 (1.12.1)
9797
aws-eventstream (~> 1, >= 1.0.2)
9898
base64 (0.3.0)
9999
bcrypt (3.1.20)
100100
benchmark (0.4.1)
101-
bigdecimal (3.2.1)
101+
bigdecimal (3.2.2)
102102
bootsnap (1.18.6)
103103
msgpack (~> 1.2)
104104
brakeman (7.0.2)
@@ -128,11 +128,11 @@ GEM
128128
erubi (1.13.1)
129129
et-orbi (1.2.11)
130130
tzinfo
131-
factory_bot (6.5.2)
131+
factory_bot (6.5.4)
132132
activesupport (>= 6.1.0)
133-
factory_bot_rails (6.4.4)
133+
factory_bot_rails (6.5.0)
134134
factory_bot (~> 6.5)
135-
railties (>= 5.0.0)
135+
railties (>= 6.1.0)
136136
faker (3.5.1)
137137
i18n (>= 1.8.11, < 2)
138138
fugit (1.11.1)
@@ -209,7 +209,7 @@ GEM
209209
nio4r (~> 2.0)
210210
raabro (1.4.0)
211211
racc (1.8.1)
212-
rack (3.1.15)
212+
rack (3.1.16)
213213
rack-session (2.1.1)
214214
base64 (>= 0.1.0)
215215
rack (>= 3.0.0)
@@ -260,18 +260,18 @@ GEM
260260
io-console (~> 0.5)
261261
rexml (3.4.1)
262262
rollbar (3.6.2)
263-
rubocop (1.75.8)
263+
rubocop (1.76.1)
264264
json (~> 2.3)
265265
language_server-protocol (~> 3.17.0.2)
266266
lint_roller (~> 1.1.0)
267267
parallel (~> 1.10)
268268
parser (>= 3.3.0.2)
269269
rainbow (>= 2.2.2, < 4.0)
270270
regexp_parser (>= 2.9.3, < 3.0)
271-
rubocop-ast (>= 1.44.0, < 2.0)
271+
rubocop-ast (>= 1.45.0, < 2.0)
272272
ruby-progressbar (~> 1.7)
273273
unicode-display_width (>= 2.4.0, < 4.0)
274-
rubocop-ast (1.44.1)
274+
rubocop-ast (1.45.1)
275275
parser (>= 3.3.7.2)
276276
prism (~> 1.4)
277277
rubocop-capybara (2.22.1)
@@ -323,7 +323,7 @@ GEM
323323
awesome_print
324324
thor (1.3.2)
325325
timeout (0.4.3)
326-
turbo-rails (2.0.13)
326+
turbo-rails (2.0.16)
327327
actionpack (>= 7.1.0)
328328
railties (>= 7.1.0)
329329
tzinfo (2.0.6)

app/models/project.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def sources
4747
)
4848
end
4949

50-
def generate_ssh_keys
50+
def generate_ssh_keys # rubocop: disable Naming/PredicateMethod
5151
keys = ::SshKeygen.new.generate
5252
if keys
5353
self.sources_private_ssh_key = keys.priv

config/distros.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,13 @@ distros:
9898
arch: x86_64
9999
image_info_url: 'https://hub.docker.com/_/fedora'
100100

101+
- id: 'fedora_42'
102+
name: 'Fedora 42'
103+
image: 'fedora:42'
104+
<<: *redhat
105+
arch: x86_64
106+
image_info_url: 'https://hub.docker.com/_/fedora'
107+
101108
- id: 'fedora_rawhide'
102109
name: 'Fedora Rawhide'
103110
image: 'fedora:rawhide'
@@ -210,6 +217,13 @@ distros:
210217
arch: x86_64
211218
image_info_url: 'https://hub.docker.com/_/almalinux'
212219

220+
- id: 'almalinux_10'
221+
name: 'AlmaLinux 10'
222+
image: 'almalinux:10'
223+
<<: *redhat
224+
arch: x86_64
225+
image_info_url: 'https://hub.docker.com/_/almalinux'
226+
213227
- id: 'rockylinux_8'
214228
name: 'Rocky Linux 8'
215229
image: 'rockylinux:8'

0 commit comments

Comments
 (0)