Commit 3b907d4 1 parent e8d1a1e commit 3b907d4 Copy full SHA for 3b907d4
File tree 5 files changed +11
-9
lines changed
5 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -23,11 +23,13 @@ jobs:
23
23
strategy :
24
24
fail-fast : false
25
25
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'
31
33
env :
32
34
PUPPET_VERSION : ${{ matrix.puppet }}
33
35
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ def initialize(*args)
120
120
request_config_reload if applied_total > 0
121
121
122
122
if ARGV . include? ( '--migrations-only' )
123
- verbose = ( ARGV . include? ( '--verbose' ) || ARGV . include? ( '-v' ) )
123
+ verbose = ARGV . include? ( '--verbose' ) || ARGV . include? ( '-v' )
124
124
Logging . setup ( verbose : verbose )
125
125
self . class . logger . notice ( 'Log buffers flushed' )
126
126
self . class . exit ( 0 )
Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ def interpret_validation_args(args)
161
161
162
162
def normalize_value ( value )
163
163
case value
164
- when ::HighLine ::String # don't persist highline extensions
164
+ when ::HighLine ::String # don't persist highline extensions
165
165
value . to_s
166
166
when Array
167
167
value . map { |v | normalize_value ( v ) }
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def update(line)
34
34
@all_lines += 1
35
35
36
36
# 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
38
38
force_update = false
39
39
40
40
if ( line_monitor = MONITOR_RESOURCE . match ( line ) )
Original file line number Diff line number Diff line change 9
9
"requirements" : [
10
10
{
11
11
"name" : " puppet" ,
12
- "version_requirement" : " >= 4.5.0 < 8 .0.0"
12
+ "version_requirement" : " >= 4.5.0 < 9 .0.0"
13
13
}
14
14
]
15
15
}
You can’t perform that action at this time.
0 commit comments