Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
id: action
uses: perl-actions/perl-versions@main
with:
since-perl: '5.10'
since-perl: '5.8'
with-devel: 'true'

# bookworm base images only exist for 5.36 and newer.
Expand Down
22 changes: 20 additions & 2 deletions cpanfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ sub requires_by_perl {
unless @_ == 1 || $] < shift
;

push @requires, shift // return;
my $version = shift;
return unless defined $version;

push @requires, $version;
last;
}

Expand All @@ -71,6 +74,9 @@ sub skip { undef }
requires_by_perl 'App::cpanoutdated',
;

requires_by_perl 'App::Prove', # Upgrade to newest version
;

requires_by_perl 'Code::TidyAll::Plugin::SortLines::Naturally',
prior 5.012 => skip
;
Expand Down Expand Up @@ -175,6 +181,11 @@ requires_by_perl 'ExtUtils::MakeMaker',
requires_by_perl 'File::Temp',
;

requires_by_perl 'HTML::Tagset', # Transitive dependency of Plack
prior 5.010 => '==3.20',
otherwise skip
;

requires_by_perl 'IO::Socket::IP',
prior 5.014 => '==0.41',
;
Expand All @@ -190,14 +201,15 @@ requires_by_perl 'Module::Build',
;

requires_by_perl 'Perl::Critic',
prior 5.010 => '==1.142',
prior 5.010 => '==1.140', # v.142 - failing test t/20_policies.t
otherwise '>= 1.144',
;

requires_by_perl 'Perl::Tidy', '>= 20220217',
;

requires_by_perl 'Plack',
prior 5.010 => undef, # requires Pod::Usage >= 1.36 (podlators)
prior 5.012 => '==1.0050',
otherwise skip
;
Expand All @@ -219,6 +231,11 @@ requires_by_perl 'Pod::Readme',
prior 5.012 => skip,
;

requires_by_perl 'Pod::Usage', # Dependency of Plack
prior 5.010 => '==1.70',
otherwise skip
;

requires_by_perl 'Pod::Spell', '>= 1.25',
;

Expand Down Expand Up @@ -278,6 +295,7 @@ requires_by_perl 'Test::MinimumVersion',
;

requires_by_perl 'Test::MockModule',
prior 5.010 => '==0.175', # since 0.176 t/mock_strict.t is failing
prior 5.012 => '==0.178',
;

Expand Down