From ae320cd8d27efd4bc9312c0ca63429d7e51108cc Mon Sep 17 00:00:00 2001 From: ShahanaFarooqui Date: Wed, 4 Jun 2025 13:47:32 +0530 Subject: [PATCH] CI: Update Ubuntu version from 20 to 22 for Github Actions Ubuntu 20.04 reached its end-of-life (EOL) on April 15, 2025, and GitHub Actions subsequently removed the Ubuntu 20.04 LTS runner. As a result, we must upgrade all workflow runners to at least Ubuntu 22.04. Currently, this update has only been applied to pypi.yml for core-lightning. Changelog-None. --- .github/workflows/pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index e3fbbd542..9e29e9010 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -16,7 +16,7 @@ on: jobs: deploy: name: Build and publish ${{ matrix.package }} 🐍 - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 timeout-minutes: 120 strategy: fail-fast: true