From 98e058a72bf6b6581ad909184601995cef0cc578 Mon Sep 17 00:00:00 2001 From: Tom Wyant Date: Sun, 28 Apr 2024 14:00:13 -0400 Subject: [PATCH] Bump GitHub CI minimm Perl to 5.10.1. This used to be 5.8.8, but the latest edition of HTML::Tagset (an indirect dependency) requires 5.10. --- .github/workflows/ci.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8eace92..750e466 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,11 +38,15 @@ jobs: # systems include: - runner: ubuntu-latest - # v5.8.8 is the earliest known to work - perl: '5.8.8' + # v5.10.1 is the earliest known to work + # This used to be 5.8.8, but the latest edition of HTML::Tagset (an + # indirect dependency) requires 5.10 + perl: '5.10.1' - runner: macos-latest - # v5.8.8 is the earliest known to work - perl: '5.8.8' + # v5.10.1 is the earliest known to work + # This used to be 5.8.8, but the latest edition of HTML::Tagset (an + # indirect dependency) requires 5.10 + perl: '5.10.1' - runner: windows-latest # v5.26.8 is the earliest known to work perl: '5.26.0'