Skip to content

Commit aa8869f

Browse files
committed
Fix runner number
1 parent e69a318 commit aa8869f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build_and_test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
os: [
1616
ubuntu-latest,
17-
macos-12,
17+
macos-13,
1818
macos-14, # macOS arm runner
1919
windows-latest,
2020
]
@@ -32,7 +32,7 @@ jobs:
3232
matrix:
3333
os: [
3434
ubuntu-latest,
35-
macos-12,
35+
macos-13,
3636
macos-14, # macOS arm runner
3737
windows-latest,
3838
]
@@ -49,7 +49,7 @@ jobs:
4949
strategy:
5050
matrix:
5151
os: [
52-
macos-12,
52+
macos-13,
5353
macos-14,
5454
ubuntu-latest,
5555
windows-latest,
@@ -58,7 +58,7 @@ jobs:
5858
steps:
5959
- uses: actions/checkout@v3
6060
- name: Install bison
61-
if: ${{ matrix.os == 'macos-12' || matrix.os == 'macos-14' }}
61+
if: ${{ matrix.os == 'macos-13' || matrix.os == 'macos-14' }}
6262
run: |
6363
brew install bison gcc
6464
- name: Test from-source

0 commit comments

Comments
 (0)