Skip to content

Commit 6cdcf8b

Browse files
committed
fix: macos-12 is deprecated in github action, bump it to macos-13
Signed-off-by: zongz <[email protected]>
1 parent 29aeddf commit 6cdcf8b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/c-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
working-directory: "c"
3030
strategy:
3131
matrix:
32-
os: [macos-12, macos-latest, ubuntu-latest]
32+
os: [macos-13, macos-latest, ubuntu-latest]
3333
runs-on: ${{ matrix.os }}
3434
steps:
3535
- uses: actions/checkout@v4

.github/workflows/cpp-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
working-directory: "cpp"
3030
strategy:
3131
matrix:
32-
os: [macos-12, macos-latest, ubuntu-latest]
32+
os: [macos-13, macos-latest, ubuntu-latest]
3333
runs-on: ${{ matrix.os }}
3434
steps:
3535
- uses: actions/checkout@v4

.github/workflows/go-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
test:
2525
strategy:
2626
matrix:
27-
os: [macos-12, macos-13, macos-13-xlarge, macos-14, macos-latest, ubuntu-20.04, ubuntu-22.04, ubuntu-latest, windows-latest]
27+
os: [macos-13, macos-13, macos-13-xlarge, macos-14, macos-latest, ubuntu-20.04, ubuntu-22.04, ubuntu-latest, windows-latest]
2828
runs-on: ${{ matrix.os }}
2929
defaults:
3030
run:

.github/workflows/nodejs-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
path: nodejs/*.node
164164

165165
macos:
166-
runs-on: macos-12
166+
runs-on: macos-13
167167
strategy:
168168
matrix:
169169
settings:

.github/workflows/swift-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
working-directory: "swift"
3030
strategy:
3131
matrix:
32-
os: [macos-12, macos-latest, ubuntu-latest]
32+
os: [macos-13, macos-latest, ubuntu-latest]
3333
runs-on: ${{ matrix.os }}
3434
steps:
3535
- uses: actions/checkout@v4

.github/workflows/zig-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
working-directory: "zig"
3030
strategy:
3131
matrix:
32-
os: [macos-12, macos-latest, ubuntu-20.04, ubuntu-latest]
32+
os: [macos-13, macos-latest, ubuntu-20.04, ubuntu-latest]
3333
runs-on: ${{ matrix.os }}
3434
steps:
3535
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)