diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml index f2c1a81f..b3bc4963 100644 --- a/.github/workflows/debian.yml +++ b/.github/workflows/debian.yml @@ -19,7 +19,7 @@ jobs: - name: Update system packages run: apt-get update -y - name: Install needed packages - run: apt-get install -y lsb-release sudo python3-pip openssh-server ansible + run: apt-get install -y lsb-release sudo openssh-server ansible - name: Create hosts file run: echo "localhost ansible_connection=local ansible_user=root" > hosts - name: Generate dummy SSH key diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 83f2cfa0..69e103c8 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -13,20 +13,16 @@ jobs: matrix: platforms: [ { os: "ubuntu-20.04", errbit: "True" }, - { os: "ubuntu-22.04", errbit: "False"} + { os: "ubuntu-22.04", errbit: "False"}, + { os: "ubuntu-24.04", errbit: "False"} ] rails_env: [staging, production] steps: - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: 3.8 - name: Update system packages run: sudo apt-get update -y - - name: Install OpenSSH - run: sudo apt-get install -y openssh-server - - name: Install Ansible - run: pip3 install ansible + - name: Install needed packages + run: sudo apt-get install -y openssh-server ansible - name: Create hosts file run: echo "localhost ansible_connection=local ansible_user=root" > hosts - name: Generate dummy SSH key diff --git a/README.md b/README.md index fd3c6a1a..f897e407 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,7 @@ A remote server with one of the supported distributions: - Ubuntu 20.04 x64 - Ubuntu 22.04 x64 +- Ubuntu 24.04 x64 - Debian Bullseye x64 - Debian Bookworm x64