ci: fix broken test matrix and update actions#10
Draft
toddr-bot wants to merge 21 commits into
Draft
Conversation
Drop use vars
- meta-spec 2 resources format - dependencies are static, set dynamic_config 0 - EUMM will set configure_requires on itself - Test::More only used in tests - boilerplate to clean out unsupported keys if installed with old EUMM
Makefile.PL - use meta-spec 2, fix prereqs, compatibility with old EUMM
base.t, file.t: unlink temporary files created during testing
Ignore common temp files in repo.
Docker Hub deprecated Image Format v1, breaking pulls for perl:5.8 through perl:5.24 containers on GitHub Actions. This caused all CI runs (including main branch) to fail on those versions. - Remove Perl 5.8-5.24 from matrix (Docker images no longer pullable) - Add Perl 5.34, 5.36, 5.38, 5.40 to matrix - Update actions/checkout from v2 to v4 The module still supports Perl 5.006+ at runtime; only CI coverage of versions older than 5.26 is affected by this infrastructure change. Supersedes #14 and #15. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This was referenced Apr 22, 2026
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 that has been failing on all branches since Docker Hub deprecated Image Format v1.
Why
Docker Hub removed support for Docker Image Format v1 and manifest v2 schema 1. The
perl:5.8throughperl:5.24container images use this deprecated format and can no longer be pulled on GitHub Actions runners. This causes every CI run — including onmain— to fail on 9 out of 13 matrix entries.How
actions/checkoutfrom v2 to v4 (v2 is also deprecated)The module still declares
MIN_PERL_VERSION => '5.006'— runtime support is unchanged. Only CI testing of versions older than 5.26 is lost due to this infrastructure limitation.Net result: 8 working Perl versions (5.26–5.40) + macOS + ubuntu, vs 4 working + 9 broken before.
Supersedes #14 and #15 on the fork.
Testing
make testpasses🤖 Generated with Claude Code