Skip to content

Commit e225a34

Browse files
maukeoalders
authored andcommitted
fix github actions, switch to ubuntu-latest
The ubuntu-20.04 runner no longer exists. <actions/runner-images#11101>: > The Ubuntu 20.04 Actions runner image will begin deprecation on > 2025-02-01 and will be fully unsupported by 2025-04-15
1 parent 4e72d97 commit e225a34

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/dzil-build-and-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
build-job:
1515
name: Build distribution
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-latest
1717
container:
1818
image: perldocker/perl-tester:5.38
1919
steps:
@@ -31,7 +31,7 @@ jobs:
3131
path: build_dir
3232
coverage-job:
3333
needs: build-job
34-
runs-on: ubuntu-20.04
34+
runs-on: ubuntu-latest
3535
container:
3636
image: perldocker/perl-tester:5.38
3737
steps:
@@ -50,7 +50,7 @@ jobs:
5050
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
5151
ubuntu-test-job:
5252
needs: build-job
53-
runs-on: "ubuntu-20.04"
53+
runs-on: "ubuntu-latest"
5454
strategy:
5555
fail-fast: true
5656
matrix:
@@ -71,7 +71,7 @@ jobs:
7171
- "5.34"
7272
- "5.36"
7373
- "5.38"
74-
name: Perl ${{ matrix.perl-version }} on ubuntu-20.04
74+
name: Perl ${{ matrix.perl-version }} on ubuntu-latest
7575
steps:
7676
- name: set up perl
7777
uses: shogo82148/actions-setup-perl@v1

.github/workflows/test-dependents.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
build-and-test-job:
99
name: Build distribution
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-latest
1111
container:
1212
image: perldocker/perl-tester:5.36
1313
steps:

0 commit comments

Comments
 (0)