Skip to content

Commit 3430841

Browse files
committed
Just use git for checkout
actions/checkout is repeatedly flaky See also actions/checkout#1951 On the other hand, plain git clone seems to work just fine and never has connection issues checking out the default branch Funnily enough, the YAML is shorter this way too
1 parent e888dfd commit 3430841

File tree

1 file changed

+7
-26
lines changed

1 file changed

+7
-26
lines changed

.github/workflows/third_party.yml

+7-26
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,7 @@ jobs:
4949
timeout-minutes: 60
5050
steps:
5151
- name: Checkout pydantic
52-
uses: actions/checkout@v4
53-
with:
54-
repository: pydantic/pydantic
52+
run: git clone https://github.com/pydantic/pydantic.git
5553
- name: Checkout typing_extensions
5654
uses: actions/checkout@v4
5755
with:
@@ -89,10 +87,7 @@ jobs:
8987
timeout-minutes: 60
9088
steps:
9189
- name: Checkout typing_inspect
92-
uses: actions/checkout@v4
93-
with:
94-
repository: ilevkivskyi/typing_inspect
95-
path: typing_inspect
90+
run: git clone https://github.com/ilevkivskyi/typing_inspect.git
9691
- name: Checkout typing_extensions
9792
uses: actions/checkout@v4
9893
with:
@@ -137,10 +132,7 @@ jobs:
137132
timeout-minutes: 60
138133
steps:
139134
- name: Check out pyanalyze
140-
uses: actions/checkout@v4
141-
with:
142-
repository: quora/pyanalyze
143-
path: pyanalyze
135+
run: git clone https://github.com/quora/pyanalyze.git
144136
- name: Checkout typing_extensions
145137
uses: actions/checkout@v4
146138
with:
@@ -186,10 +178,7 @@ jobs:
186178
timeout-minutes: 60
187179
steps:
188180
- name: Check out typeguard
189-
uses: actions/checkout@v4
190-
with:
191-
repository: agronholm/typeguard
192-
path: typeguard
181+
run: git clone https://github.com/agronholm/typeguard.git
193182
- name: Checkout typing_extensions
194183
uses: actions/checkout@v4
195184
with:
@@ -236,10 +225,7 @@ jobs:
236225
timeout-minutes: 60
237226
steps:
238227
- name: Check out typed-argument-parser
239-
uses: actions/checkout@v4
240-
with:
241-
repository: swansonk14/typed-argument-parser
242-
path: typed-argument-parser
228+
run: git clone https://github.com/swansonk14/typed-argument-parser.git
243229
- name: Checkout typing_extensions
244230
uses: actions/checkout@v4
245231
with:
@@ -291,10 +277,7 @@ jobs:
291277
timeout-minutes: 60
292278
steps:
293279
- name: Checkout mypy for stubtest and mypyc tests
294-
uses: actions/checkout@v4
295-
with:
296-
repository: python/mypy
297-
path: mypy
280+
run: git clone https://github.com/python/mypy.git
298281
- name: Checkout typing_extensions
299282
uses: actions/checkout@v4
300283
with:
@@ -342,9 +325,7 @@ jobs:
342325
timeout-minutes: 60
343326
steps:
344327
- name: Checkout cattrs
345-
uses: actions/checkout@v4
346-
with:
347-
repository: python-attrs/cattrs
328+
run: git clone https://github.com/python-attrs/cattrs.git
348329
- name: Checkout typing_extensions
349330
uses: actions/checkout@v4
350331
with:

0 commit comments

Comments
 (0)