Skip to content

Commit

Permalink
[CI] Remove macOS 14 as it's not yet available
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejfuhrer authored Dec 31, 2023
1 parent e5851d2 commit ce62526
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ jobs:
upgrade:
strategy:
matrix:
os: [macos-12, macos-13, macos-14]
os:
- macos-12
- macos-13
# TODO: Not yet available
# - macos-14
runs-on: ${{ matrix.os }}
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand All @@ -38,7 +42,8 @@ jobs:
pinning-workflow:
strategy:
matrix:
os: [macos-13, macos-14]
os:
- macos-13
runs-on: ${{ matrix.os }}
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand Down Expand Up @@ -72,7 +77,8 @@ jobs:
pinned-export-workflow:
strategy:
matrix:
os: [macos-13, macos-14]
os:
- macos-13
runs-on: ${{ matrix.os }}
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand Down Expand Up @@ -103,7 +109,8 @@ jobs:
pinned-load-workflow:
strategy:
matrix:
os: [macos-13, macos-14]
os:
- macos-13
runs-on: ${{ matrix.os }}
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand Down

0 comments on commit ce62526

Please sign in to comment.