Skip to content

Commit 949a1c5

Browse files
authored
Fix CI (#2149)
1 parent 7c9290e commit 949a1c5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
os: [ windows-latest, ubuntu-latest ]
13+
os: [ windows-2019, ubuntu-latest ]
1414
fail-fast: false
1515
steps:
1616
- name: Support longpaths
1717
run: git config --system core.longpaths true
18-
if: matrix.os == 'windows-latest'
18+
if: matrix.os == 'windows-2019'
1919
- name: Check out repository
2020
uses: actions/checkout@v2
2121
with:

.github/workflows/pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
15-
os: [ windows-latest, ubuntu-latest ]
15+
os: [ windows-2019, ubuntu-latest ]
1616
fail-fast: false
1717
steps:
1818
- name: Support longpaths
1919
run: git config --system core.longpaths true
20-
if: matrix.os == 'windows-latest'
20+
if: matrix.os == 'windows-2019'
2121
- name: Check out repository
2222
uses: actions/checkout@v2
2323
with:

0 commit comments

Comments
 (0)