Skip to content

Commit 6fc3505

Browse files
committed
Pin GHA MacOS jobs to MacOS 12
1 parent e884c00 commit 6fc3505

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797

9898
tests-unix:
9999
name: tests / ${{ matrix.python.key || matrix.python }} / ${{ matrix.os }}
100-
runs-on: ${{ matrix.os }}-latest
100+
runs-on: ${{ matrix.os }}
101101

102102
needs: [packaging, determine-changes]
103103
if: >-
@@ -107,7 +107,7 @@ jobs:
107107
strategy:
108108
fail-fast: true
109109
matrix:
110-
os: [Ubuntu, MacOS]
110+
os: [ubuntu-latest, macos-12]
111111
python:
112112
- "3.8"
113113
- "3.9"
@@ -123,13 +123,13 @@ jobs:
123123
allow-prereleases: true
124124

125125
- name: Install Ubuntu dependencies
126-
if: matrix.os == 'Ubuntu'
126+
if: matrix.os == 'ubuntu-latest'
127127
run: |
128128
sudo apt-get update
129129
sudo apt-get install bzr
130130
131131
- name: Install MacOS dependencies
132-
if: matrix.os == 'MacOS'
132+
if: matrix.os == 'macos-12'
133133
run: brew install breezy
134134

135135
- run: pip install nox

0 commit comments

Comments
 (0)