From 231609c182b8752490eec5e9e91e0729adb4e57d Mon Sep 17 00:00:00 2001 From: Ryan Harper Date: Tue, 12 Aug 2025 11:31:27 -0500 Subject: [PATCH] fix: drop Ubuntu Focal (20.04) build from github workflow The 20.04 runner on github is not reliable and being depricated[1] and notes final retire date is 2025-04-15. We're past that now and seeing issues. This PR drops the 20.04 from the github workflow matrix. 1. https://github.blog/changelog/2025-01-15-github-actions-ubuntu-20-runner-image-brownout-dates-and-other-breaking-changes/ Signed-off-by: Ryan Harper --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 95c1868..3fc28d2 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -6,7 +6,7 @@ jobs: build: strategy: matrix: - os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04] + os: [ubuntu-22.04, ubuntu-24.04] name: build runs-on: ${{ matrix.os }} steps: