Skip to content

Commit 0f69a84

Browse files
committed
workflows: switch to macos-latest from old macos-14
Initially it was the only ARM option available, now it's outdated and latest (macos-15 now) is ARM-based anyway. Follow https://github.com/nspcc-dev/.github/blob/6c4dff04862ad947805e82fb9b664899906c6305/gh.md Signed-off-by: Roman Khimov <roman@nspcc.ru>
1 parent cb6f688 commit 0f69a84

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ${{matrix.os.name}}
3838
strategy:
3939
matrix:
40-
os: [{ name: ubuntu-latest, bin-name: linux }, { name: macos-14, bin-name: darwin }] # { name: windows-latest, bin-name: windows }
40+
os: [{ name: ubuntu-latest, bin-name: linux }, { name: macos-latest, bin-name: darwin }] # { name: windows-latest, bin-name: windows }
4141
arch: [amd64, arm64]
4242

4343
steps:

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ jobs:
4545
name: Unit tests
4646
strategy:
4747
matrix:
48-
os: [ubuntu-latest, macos-14]
48+
os: [ubuntu-latest, macos-latest]
4949
go: [ '1.24', '1.25' ]
5050
exclude:
5151
# Only the latest Go version MacOS.
52-
- os: macos-14
52+
- os: macos-latest
5353
go: '1.24'
5454
# Exclude the latest Go version for Ubuntu as Coverage uses it.
5555
- os: ubuntu-latest

.github/workflows/run-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
tests_parallel_level: 3
5555
os: >
5656
[{"runner": "ubuntu-latest", "binary": "linux-amd64"},
57-
{"runner": "macos-14", "binary": "darwin-arm64"}]
57+
{"runner": "macos-latest", "binary": "darwin-arm64"}]
5858
secrets: inherit
5959

6060
run_all_tests:
@@ -73,6 +73,6 @@ jobs:
7373
tests_parallel_level: 3
7474
os: >
7575
[{"runner": "ubuntu-latest", "binary": "linux-amd64"},
76-
{"runner": "macos-14", "binary": "darwin-arm64", "shard": 0},
77-
{"runner": "macos-14", "binary": "darwin-arm64", "shard": 1}]
76+
{"runner": "macos-latest", "binary": "darwin-arm64", "shard": 0},
77+
{"runner": "macos-latest", "binary": "darwin-arm64", "shard": 1}]
7878
secrets: inherit

0 commit comments

Comments
 (0)