From 8c7a9e71f7faa75bd559afc63dc889ab98f62670 Mon Sep 17 00:00:00 2001 From: Alejandro R Mosteo Date: Wed, 12 Feb 2025 11:39:07 +0100 Subject: [PATCH] fix: upgrade deprecated Ubuntu runners (#1845) 20.04 is being deprecated: https://github.com/actions/runner-images/issues/11101 --- .github/workflows/ci-appimage.yml | 2 +- .github/workflows/ci-release.yml | 4 ++-- .github/workflows/nightly.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-appimage.yml b/.github/workflows/ci-appimage.yml index 77508c98..a27340ef 100644 --- a/.github/workflows/ci-appimage.yml +++ b/.github/workflows/ci-appimage.yml @@ -18,7 +18,7 @@ jobs: # Oldest supported by Alire+GitHub to increase AppImage back-compatibility # Unfortunately we depend on the static elaboration model of recent GNATs - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Check out repository diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index 00ff340e..be7dfca6 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -46,7 +46,7 @@ jobs: - os: macos-latest # arm64 id: aarch64-macos - - os: ubuntu-20.04 # x64, oldest supported so releases can run on older distros + - os: ubuntu-22.04 # x64, oldest supported so releases can run on older distros id: x86_64-linux - os: ubuntu-24.04-arm # new ARM runners @@ -188,7 +188,7 @@ jobs: - os: macos-latest id: universal-macos - - os: ubuntu-20.04 + - os: ubuntu-22.04 id: x86_64-linux - os: ubuntu-24.04-arm diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index ce04baee..31030288 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -24,7 +24,7 @@ jobs: os: - macos-13 # x64 - macos-14 # arm64 - - ubuntu-20.04 # oldest supported to be able to run on those + - ubuntu-22.04 # oldest supported to be able to run on those - ubuntu-24.04-arm # oldest with ARM arch - windows-latest -- 2.39.5