From a208c5429679f691457b6d4fc1f77aa05c0245bc Mon Sep 17 00:00:00 2001 From: Patrik Ragnarsson Date: Sat, 26 Oct 2024 12:51:59 +0200 Subject: [PATCH] Test with Ubuntu 24.04, remove 20.04 (#4) 24.04 is GA now, and it sounds like 20.04 is going away. From https://github.com/actions/runner-images?tab=readme-ov-file#software-and-image-support > We support (at maximum) 2 GA images and 1 beta image at a time. We begin the deprecation process of the oldest image label once the newest OS image label has been released to GA. --- .github/workflows/debug.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index f1269b9..3c9ecb4 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -7,7 +7,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ ubuntu-20.04, ubuntu-22.04 ] + os: [ ubuntu-22.04, ubuntu-24.04 ] name: ${{ matrix.os }} runs-on: ${{ matrix.os }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cfb1a5c..4390e08 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ ubuntu-20.04, ubuntu-22.04 ] + os: [ ubuntu-22.04, ubuntu-24.04 ] name: ${{ matrix.os }} runs-on: ${{ matrix.os }}