Skip to content

Commit 85dc7ce

Browse files
committed
Bump minimum supported version to 5.10
Some fundamental modules only support 5.10, for example: FAIL CPAN-Meta-Requirements-2.143 requires perl v5.10.0, but you have only 5.008009
1 parent c4207ce commit 85dc7ce

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/workflows/publish-to-docker.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
id: action
2121
uses: perl-actions/perl-versions@main
2222
with:
23-
since-perl: '5.8'
23+
since-perl: '5.10'
2424
with-devel: 'true'
2525

2626
# bookworm base images only exist for 5.36 and newer.
@@ -76,7 +76,7 @@ jobs:
7676
username: ${{ secrets.DOCKER_USERNAME }}
7777
password: ${{ secrets.DOCKER_GITHUB_TOKEN }}
7878
dockerfile: Dockerfile
79-
buildargs: BASE=${{ matrix.perl-version }}-buster,CPANOUTDATED=${{ matrix.perl-version != '5.8' }}
79+
buildargs: BASE=${{ matrix.perl-version }}-buster,CPANOUTDATED=1
8080
tags: "${{ matrix.perl-version }}-buster,${{ matrix.perl-version }}"
8181

8282
build-bookworm:
@@ -98,5 +98,5 @@ jobs:
9898
username: ${{ secrets.DOCKER_USERNAME }}
9999
password: ${{ secrets.DOCKER_GITHUB_TOKEN }}
100100
dockerfile: Dockerfile
101-
buildargs: BASE=${{ matrix.perl-version }}-bookworm,CPANOUTDATED=${{ matrix.perl-version != '5.8' }}
101+
buildargs: BASE=${{ matrix.perl-version }}-bookworm,CPANOUTDATED=1
102102
tags: "${{ matrix.perl-version }}-bookworm"

.github/workflows/test-cpanfile.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
id: action
1818
uses: perl-actions/perl-versions@main
1919
with:
20-
since-perl: '5.8'
20+
since-perl: '5.10'
2121
with-devel: 'true'
2222

2323
test-job:

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ devel
9595
5.14
9696
5.12
9797
5.10
98-
5.8
9998
```
10099

101100
## devel build
@@ -112,7 +111,7 @@ versions without an explicit Debian version are `buster`.
112111

113112
## Using the images with GitHub Workflow
114113

115-
Here is a sample workflow for Linux running on all Perl version 5.8 to 5.38
114+
Here is a sample workflow for Linux running on all Perl version 5.10 to 5.38
116115
You can save the content in `.github/workflow/linux.yml`.
117116

118117
Note: this example is using cpm to install the dependencies from a cpanfile.
@@ -159,7 +158,6 @@ jobs:
159158
- '5.14'
160159
- '5.12'
161160
- '5.10'
162-
- '5.8'
163161

164162
container:
165163
image: perldocker/perl-tester:${{ matrix.perl-version }}

0 commit comments

Comments
 (0)