Skip to content

Commit

Permalink
ci: checkout before reading dependencies file
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-grande committed Jul 8, 2024
1 parent 67c8c78 commit 4a56d53
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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/[email protected]
env:
SPEC_VENDOR: Github Actions
Expand Down

0 comments on commit 4a56d53

Please sign in to comment.