Skip to content

Commit

Permalink
CI: use macOS 12 (instead of 13/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 7a99f0b commit 973fda0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on: [push, pull_request, workflow_dispatch]

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

Please sign in to comment.