Skip to content

Commit a5c4910

Browse files
committed
FIX github action generate opl release no runners
Github's ubuntu-20.04 runner image was hard deprecated on 2025-04-01, so no runners are available. The github action for generating the OPL release just gets stuck waiting for a runner to become available. I've updated the runner to ubuntu-24.04. This required installing DBD::MariaDB from cpan as it wasn't available from apt, which required installing cpanminus, build-essential, libmariadb-dev as dependencies.
1 parent ecb497d commit a5c4910

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/generate-opl-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
release:
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-24.04
1515

1616
permissions:
1717
contents: write
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Install Dependencies
3636
run: |
37-
sudo apt-get update && sudo apt-get install -y libdbi-perl libjson-perl libdbd-mariadb-perl
37+
sudo apt-get update && sudo apt-get install -y libdbi-perl libjson-perl cpanminus build-essential libmariadb-dev && sudo cpanm install DBD::MariaDB
3838
3939
- name: Verify MariaDB connection
4040
env:

0 commit comments

Comments
 (0)