From b0a7e6074eb701560049a198d5e6e21bdb3d0b02 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Mon, 12 May 2025 15:57:30 -0600 Subject: [PATCH] ci: Drop Ubuntu 20.04 GitHub doesn't provide the image anymore. Signed-off-by: Zack Cerza --- .github/workflows/ci.yml | 5 ----- .github/workflows/dependencies.yml | 5 ----- 2 files changed, 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2998aa890..4fc1b2c3c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,8 +13,6 @@ jobs: strategy: matrix: include: - - os: ubuntu-20.04 - python: "3.10" - os: ubuntu-22.04 python: "3.10" - os: ubuntu-22.04 @@ -23,9 +21,6 @@ jobs: python: "3.12" steps: - uses: actions/checkout@v4 - - name: Add deadsnakes PPA - if: matrix.os == 'ubuntu-20.04' - run: sudo add-apt-repository --yes ppa:deadsnakes/ppa - name: Setup Python uses: actions/setup-python@v5 with: diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 3131cb25b..5c21f7b88 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -13,16 +13,11 @@ jobs: strategy: matrix: include: - - os: ubuntu-20.04 - python: "3.10" - os: ubuntu-22.04 python: "3.10" - os: ubuntu-22.04 python: "3.11" steps: - - name: Add deadsnakes PPA - if: matrix.os == 'ubuntu-20.04' - run: sudo add-apt-repository --yes ppa:deadsnakes/ppa - name: Set up Python uses: actions/setup-python@v5 with: -- 2.47.3