Skip to content

Commit 143efe1

Browse files
committed
Use correct identifier for macOS runner in test workflows
The official GitHub Actions documentation specifies the hosted macOS runner names use the `macos` prefix. Although the non-compliant case previously in use clearly does work, there is no guarantee it will continue to do so, so it's safest to follow the documentation exactly.
1 parent a34d65d commit 143efe1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test-go-integration-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
operating-system:
3939
- ubuntu-latest
4040
- windows-latest
41-
- macOS-latest
41+
- macos-latest
4242

4343
runs-on: ${{ matrix.operating-system }}
4444

.github/workflows/test-go-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
operating-system:
3333
- ubuntu-latest
3434
- windows-latest
35-
- macOS-latest
35+
- macos-latest
3636

3737
runs-on: ${{ matrix.operating-system }}
3838

0 commit comments

Comments
 (0)