Skip to content

Commit 3b907d4

Browse files
archanaserverehelms
authored andcommitted
Update matrix version
1 parent e8d1a1e commit 3b907d4

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

.github/workflows/ci.yaml

+7-5
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,13 @@ jobs:
2323
strategy:
2424
fail-fast: false
2525
matrix:
26-
ruby:
27-
- "2.7"
28-
puppet:
29-
- "7"
30-
26+
include:
27+
- ruby: '2.7'
28+
puppet: '7'
29+
- ruby: '3.0'
30+
puppet: '7'
31+
- ruby: '3.2'
32+
puppet: '8'
3133
env:
3234
PUPPET_VERSION: ${{ matrix.puppet }}
3335

lib/kafo/kafo_configure.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def initialize(*args)
120120
request_config_reload if applied_total > 0
121121

122122
if ARGV.include?('--migrations-only')
123-
verbose = (ARGV.include?('--verbose') || ARGV.include?('-v'))
123+
verbose = ARGV.include?('--verbose') || ARGV.include?('-v')
124124
Logging.setup(verbose: verbose)
125125
self.class.logger.notice('Log buffers flushed')
126126
self.class.exit(0)

lib/kafo/param.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def interpret_validation_args(args)
161161

162162
def normalize_value(value)
163163
case value
164-
when ::HighLine::String # don't persist highline extensions
164+
when ::HighLine::String # don't persist highline extensions
165165
value.to_s
166166
when Array
167167
value.map { |v| normalize_value(v) }

lib/kafo/progress_bar.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def update(line)
3434
@all_lines += 1
3535

3636
# we print every 20th line during installation preparing otherwise only update at EVALTRACE_START
37-
update_bar = (@total == :unknown && @all_lines % 20 == 0)
37+
update_bar = @total == :unknown && @all_lines % 20 == 0
3838
force_update = false
3939

4040
if (line_monitor = MONITOR_RESOURCE.match(line))

modules/kafo_configure/metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"requirements": [
1010
{
1111
"name": "puppet",
12-
"version_requirement": ">= 4.5.0 < 8.0.0"
12+
"version_requirement": ">= 4.5.0 < 9.0.0"
1313
}
1414
]
1515
}

0 commit comments

Comments
 (0)