From 20bb34d9490a201a65c5af3a2593f43863299b9f Mon Sep 17 00:00:00 2001 From: Michael Bear <38406045+mjbear@users.noreply.github.com> Date: Tue, 18 Feb 2025 08:06:08 -0500 Subject: [PATCH] Update ubuntu-20.04 to 24.04 In April 2025, ubuntu-20.04 runners will be gone. --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a7295d2..29ab370 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ on: # yamllint disable jobs: lint: - runs-on: "ubuntu-20.04" + runs-on: "ubuntu-24.04" steps: - name: "Check out repository code" uses: "actions/checkout@v2" @@ -22,7 +22,7 @@ jobs: - name: "Linting" run: "invoke lint" test: - runs-on: "ubuntu-20.04" + runs-on: "ubuntu-24.04" strategy: fail-fast: true matrix: @@ -37,7 +37,7 @@ jobs: needs: - "lint" integration: - runs-on: "ubuntu-20.04" + runs-on: "ubuntu-24.04" strategy: fail-fast: false matrix: @@ -91,7 +91,7 @@ jobs: - "test" publish_github: name: "Publish to GitHub" - runs-on: "ubuntu-20.04" + runs-on: "ubuntu-24.04" if: "startsWith(github.ref, 'refs/tags/v')" steps: - name: "Check out repository code" @@ -116,7 +116,7 @@ jobs: - "integration" publish_galaxy: name: "Publish to Ansible Galaxy" - runs-on: "ubuntu-20.04" + runs-on: "ubuntu-24.04" if: "startsWith(github.ref, 'refs/tags/v')" steps: - name: "Check out repository code"