From caeb49a4aef0a536ac7912deaf10ae84a6be3c81 Mon Sep 17 00:00:00 2001 From: Jake Petroules Date: Tue, 15 Jul 2025 08:39:57 -0700 Subject: [PATCH] Drop support for Focal in GitHub Actions CI Per https://forums.swift.org/t/dropping-support-for-ubuntu-20-04/81109, the Swift project is dropping support for Ubuntu 20.04 (Focal) beginning in Swift 6.2 and later, so remove it from our testing matrix (it's failing now anyways). --- .github/workflows/pull_request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 47ce72a9..c39112b4 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -13,9 +13,9 @@ jobs: name: Test uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main with: - linux_os_versions: '["noble", "jammy", "focal", "rhel-ubi9"]' + linux_os_versions: '["noble", "jammy", "rhel-ubi9"]' linux_pre_build_command: | - if command -v apt-get >/dev/null 2>&1 ; then # bookworm, noble, jammy, focal + if command -v apt-get >/dev/null 2>&1 ; then # bookworm, noble, jammy apt-get update -y # Build dependencies