Skip to content

Commit 0caab50

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 110e473 commit 0caab50

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
@@ -39,7 +39,7 @@ jobs:
3939
operating-system:
4040
- ubuntu-latest
4141
- windows-latest
42-
- macOS-latest
42+
- macos-latest
4343

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
operating-system:
3434
- ubuntu-latest
3535
- windows-latest
36-
- macOS-latest
36+
- macos-latest
3737

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

0 commit comments

Comments
 (0)