Skip to content

Commit ad74a86

Browse files
authored
ci: use macos-14 instead of macos-13 (the older runner is being deprecated) (#25670)
1 parent b470780 commit ad74a86

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

.github/workflows/cross_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ concurrency:
2222

2323
jobs:
2424
cross-macos:
25-
runs-on: macos-13
25+
runs-on: macos-latest
2626
timeout-minutes: 15
2727
env:
2828
VFLAGS: -cc clang

.github/workflows/periodic_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
cc: tcc
2020
- os: windows-latest
2121
cc: msvc
22-
- os: macos-13
22+
- os: macos-latest
2323
cc: clang
2424
fail-fast: false
2525
runs-on: ${{ matrix.os }}

.github/workflows/release_ci.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,30 +24,31 @@ jobs:
2424
runs-on: ${{ matrix.os }}
2525
strategy:
2626
matrix:
27-
os: [ubuntu-22.04, ubuntu-22.04-arm, macos-13, macos-14, windows-latest]
27+
os:
28+
[
29+
ubuntu-22.04,
30+
ubuntu-22.04-arm,
31+
macos-15-intel,
32+
macos-15,
33+
windows-latest,
34+
]
2835
include:
2936
- os: ubuntu-22.04
3037
cc: gcc
31-
- os: ubuntu-22.04
3238
target: linux
3339
artifact: v_linux.zip
3440
- os: ubuntu-22.04-arm
3541
cc: gcc
36-
- os: ubuntu-22.04-arm
3742
target: linux_arm64
3843
artifact: v_linux_arm64.zip
39-
- os: macos-13
44+
- os: macos-15-intel
4045
cc: clang
41-
- os: macos-13
4246
target: macos_x86_64
4347
artifact: v_macos_x86_64.zip
44-
- os: macos-14
48+
- os: macos-15
4549
cc: clang
46-
- os: macos-14
4750
target: macos_arm64
4851
artifact: v_macos_arm64.zip
49-
- os: macos-14
50-
cflags: -cflags "-target arm64-apple-darwin"
5152
- os: windows-latest
5253
cc: msvc
5354
target: windows

.github/workflows/symlink_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ${{ matrix.os }}
2121
strategy:
2222
matrix:
23-
os: [ubuntu-24.04, macos-13]
23+
os: [ubuntu-latest, macos-latest]
2424
fail-fast: false
2525
steps:
2626
- uses: actions/checkout@v5

.github/workflows/vup_works.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
include:
33-
- os: ubuntu-22.04
33+
- os: ubuntu-latest
3434
zip: v_linux.zip
35-
- os: macos-13
35+
- os: macos-15-intel
3636
zip: v_macos_x86_64.zip
37-
- os: macos-14
37+
- os: macos-latest
3838
zip: v_macos_arm64.zip
3939
runs-on: ${{ matrix.os }}
4040
timeout-minutes: 15

0 commit comments

Comments
 (0)