From 117e97e2c8825a53704f67f1a87ff5473dd49780 Mon Sep 17 00:00:00 2001 From: milosjovanovic Date: Wed, 24 Jun 2026 12:11:14 +0200 Subject: [PATCH] Fix CI: drop retired macos-13 from the test matrix The macos-13 matrix jobs never get assigned a runner and time out, since GitHub has retired the Intel (x86_64) macOS runner image. New GitHub-hosted macOS runners are Apple silicon, already covered by macos-latest. Remove the dead macos-13 entries. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 466c27b..35bf7b2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: if: github.event_name == 'push' || github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id strategy: matrix: - os: [ ubuntu-latest, windows-latest, macos-latest, macos-13 ] # macos-13 for x86_x64 arch + os: [ ubuntu-latest, windows-latest, macos-latest ] framework: [ net6.0, net8.0, net9.0 ] include: - os: windows-latest