Skip to content

Commit

Permalink
CI: use macOS 13 (instead of 14/latest)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
knocte committed Apr 26, 2024
1 parent 93c540d commit 16304db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Expand Up @@ -16,7 +16,7 @@ on:

jobs:
macOS--dotnet6-and-mono:
runs-on: macOS-latest
runs-on: macOS-12
steps:
- uses: actions/checkout@v1
with:
Expand Down Expand Up @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit 16304db

Please sign in to comment.