From 16304db1be654fa091fba2b86a2c048bbd3b4875 Mon Sep 17 00:00:00 2001 From: "Andres G. Aragoneses" Date: Fri, 26 Apr 2024 20:13:12 +0800 Subject: [PATCH] CI: use macOS 13 (instead of 14/latest) The macOS jobs started failing for no reason so maybe it's because macOS-latest now maps to macOS14 (which has a different CPU, AFAIU) or macOS13. See: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index ee935e216..a03e2c994 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -16,7 +16,7 @@ on: jobs: macOS--dotnet6-and-mono: - runs-on: macOS-latest + runs-on: macOS-12 steps: - uses: actions/checkout@v1 with: @@ -49,7 +49,7 @@ jobs: find . -type f -name "*.fsx" | xargs -t -I {} dotnet fsxc {} macOS--mono-only: - runs-on: macOS-latest + runs-on: macOS-12 steps: - uses: actions/checkout@v1 with: @@ -72,7 +72,7 @@ jobs: run: make update-servers macOS--dotnet6-only: - runs-on: macOS-latest + runs-on: macOS-12 steps: - uses: actions/checkout@v1 with: