fix: optimize git pull in pdoc workflow
Some checks failed
website / build (push) Failing after 32s

Replaced custom git pull command with `actions/checkout@v4` in the pdoc documentation generation workflow. This change streamlines the checkout process, leveraging a more robust and standardized approach provided by GitHub Actions. It ensures compatibility and potential performance improvements in our CI/CD pipeline.
This commit is contained in:
Kumi 2024-04-25 09:01:16 +02:00
parent fbf9b49248
commit 2bef3bb119
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -25,8 +25,7 @@ jobs:
apt install -y python3 python3-pip git
- name: Git pull
run: |
git pull
uses: actions/checkout@v4
- name: Install Python dependencies
run: |