File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -116,6 +116,10 @@ jobs:
116116 contents : write
117117 steps :
118118 - uses : actions/checkout@v4
119+ with :
120+ # New lines are discovered by running a three-dot notation diff on base_ref...head. They must share a common
121+ # ancestor. Setting fetch-depth to 1000 here should ensure that.
122+ fetch-depth : 1000
119123
120124 - name : Install everything, run the tests, produce the .coverage file
121125 run : make test # This is the part where you put your own test command
@@ -205,6 +209,8 @@ jobs:
205209 contents : write
206210 steps :
207211 - uses : actions/checkout@v4
212+ with :
213+ fetch-depth : 1000
208214
209215 - name : Install everything, run the tests, produce the .coverage file
210216 run : make test # This is the part where you put your own test command
@@ -247,6 +253,8 @@ jobs:
247253
248254 steps:
249255 - uses: actions/checkout@v4
256+ with:
257+ fetch-depth: 1000
250258
251259 - name: Set up Python
252260 id: setup-python
@@ -282,6 +290,8 @@ jobs:
282290 contents : write
283291 steps :
284292 - uses : actions/checkout@v4
293+ with :
294+ fetch-depth : 1000
285295
286296 - uses : actions/download-artifact@v4
287297 id : download
You can’t perform that action at this time.
0 commit comments