ci: checkout before reading dependencies file

This commit is contained in:
Ben Grande 2024-07-08 17:11:12 +02:00
parent 67c8c78426
commit 4a56d535ca
No known key found for this signature in database
GPG Key ID: 00C64E14F51F9E56

View File

@ -30,6 +30,10 @@ jobs:
fail-fast: false
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
- name: Update package list
run: sudo apt-get -y update
- name: Install OS packages
@ -40,10 +44,6 @@ jobs:
run: sudo dpkg-divert --rename --add /usr/lib/$(py3versions -d)/EXTERNALLY-MANAGED
- name: Install pip packages
run: pip3 install $(cat dependencies/pip.txt)
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
- uses: pre-commit/action@v3.0.1
env:
SPEC_VENDOR: Github Actions