From 80d35698ff93cbb0a0f5c776615a6bea659a2d9f Mon Sep 17 00:00:00 2001 From: Paul LeMarquand Date: Wed, 1 Apr 2026 09:59:30 -0400 Subject: [PATCH] Remove tailing comma in matrix JSON Many tools are permissive about a trailing comma in a JSON array, but not all. We use `act` to run GH actions locally and it is throwing an error trying to parse this line. --- .github/workflows/swift_package_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/swift_package_test.yml b/.github/workflows/swift_package_test.yml index fe0ab84b..c11f58a8 100644 --- a/.github/workflows/swift_package_test.yml +++ b/.github/workflows/swift_package_test.yml @@ -9,7 +9,7 @@ on: macos_xcode_versions: type: string description: "Xcode version list (JSON)" - default: "[\"16.3\", \"16.4\", \"26.3\", \"26.4.b2\", ]" + default: "[\"16.3\", \"16.4\", \"26.3\", \"26.4.b2\"]" macos_exclude_xcode_versions: type: string description: "Exclude Xcode version list (JSON)"