Skip to content

Commit 738fd7c

Browse files
authored
Merge pull request #8 from bastelfreak/ubuntu
Add Ubuntu 24.04 to CI
2 parents e5243b1 + 5da4473 commit 738fd7c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/actions/presuite.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ def initialize_beaker
2626
def beaker_platform
2727
{
2828
'ubuntu-22.04' => 'ubuntu2204-64a',
29+
'ubuntu-24.04' => 'ubuntu2404-64a',
2930
'macos-13' => 'osx13-64a',
3031
'windows-2016' => 'windows2016-64a',
3132
'windows-2019' => 'windows2019-64a',

.github/workflows/acceptance_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: Platform
1919
strategy:
2020
matrix:
21-
os: [ windows-2019, windows-2022, ubuntu-22.04, macos-13 ]
21+
os: [ windows-2019, windows-2022, ubuntu-22.04, ubuntu-24.04, macos-13 ]
2222
fail-fast: false
2323
runs-on: ${{ matrix.os }}
2424
env:
@@ -51,7 +51,7 @@ jobs:
5151
- name: Install dhclient for Linux
5252
if: runner.os == 'Linux'
5353
run: |
54-
sudo apt install dhcpcd5
54+
sudo apt install isc-dhcp-client
5555
sudo dhclient
5656
5757
# IPv6 is missing on the GitHub macOS image and we need it for the networking facts tests

0 commit comments

Comments
 (0)