ci: fix Perl compat and modernize CI workflow#15
Draft
Koan-Bot wants to merge 2 commits into
Draft
Conversation
OpenStack::Client 1.0007 requires Perl 5.014, causing CI failures on Perl 5.8-5.12 across all PRs. Bump minimum Perl to 5.014 in dist.ini, Makefile.PL, and CI matrix. Update install-with-cpm v1 to v2 (Node.js 20 deprecation). Replace curl-based cpm install on macOS and chocolatey-based strawberryperl on Windows with proper actions. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
7 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Fix CI failures on Perl 5.8-5.12 and modernize the workflow with current GitHub Actions.
Why
OpenStack::Client 1.0007 requires Perl 5.014, making all CI runs on Perl < 5.14 fail at dependency install time. This affects PRs #11-#14 (and any future PRs). Additionally,
install-with-cpm@v1uses Node.js 20 which GitHub is deprecating in June 2026.How
since-perlfrom 5.10 to 5.14 in the CI matrix (matches OpenStack::Client's actual requirement)install-with-cpmfrom v1 to v2 (Node.js 24 compatible)curl | perlcpm bootstrap withinstall-with-cpm@v2actionactions-setup-perl@v1+install-with-cpm@v2dist.iniandMakefile.PLminimum Perl version to 5.014Testing
make testpasses locally. CI will validate across all Perl 5.14+ versions.Co-Authored-By: Claude Opus 4.6 noreply@anthropic.com