Skip to content

Commit

Permalink
fix(ci): replace macos-latest with macos-13 (#265)
Browse files Browse the repository at this point in the history
Signed-off-by: Luka Peschke <[email protected]>
  • Loading branch information
lukapeschke authored Jul 22, 2024
1 parent c1eea89 commit a145c7f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
os: ["ubuntu-latest", "macos-13", "windows-latest"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
# Only testing the build on the smallest supported Python version
# since we're building abi3 wheels
python-version: ["3.8"]
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
os: ["ubuntu-latest", "macos-13", "windows-latest"]
architecture: [x86-64, aarch64]
exclude:
- os: windows-latest
Expand All @@ -128,7 +128,7 @@ jobs:
if: matrix.architecture == 'aarch64'
id: target
run: |
TARGET=${{ matrix.os == 'macos-latest' && 'aarch64-apple-darwin' || 'aarch64-unknown-linux-gnu'}}
TARGET=${{ matrix.os == 'macos-13' && 'aarch64-apple-darwin' || 'aarch64-unknown-linux-gnu'}}
echo "target=$TARGET" >> $GITHUB_OUTPUT
- name: build (fast)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
path: dist

macos:
runs-on: macos-latest
runs-on: macos-13
strategy:
matrix:
python-version: ["3.8"]
Expand Down

0 comments on commit a145c7f

Please sign in to comment.