ci/package_checks: disable shallow clone in pipeline

The shallow clone leads to the list of commits being incorrect, disable it entirely for now.
This commit is contained in:
Silke Hofstra 2023-10-08 15:56:39 +02:00
parent 419d2bb2dd
commit 78918a115f

View file

@ -14,5 +14,5 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
with:
fetch-depth: 2
fetch-depth: 0
- run: common/CI/package_checks.py --base=origin/${{ github.event.pull_request.base.ref }}