Skip to content

Commit

Permalink
Update build-run-validate.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
fabriziosalmi authored Jan 25, 2025
1 parent 96804cf commit 55d34b3
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/build-run-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,22 +39,6 @@ jobs:
echo "Go installation failed or incorrect version"
exit 1
fi
- name: Install Python Dependencies
run: |
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install tqdm
- name: Cache Python Dependencies
id: cache-pip
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: pip-${{ runner.os }}-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
pip-${{ runner.os }}-
- name: Clone caddy-waf Repository
run: |
Expand Down Expand Up @@ -87,6 +71,22 @@ jobs:
exit 1
fi
- name: Install Python Dependencies
run: |
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install tqdm
- name: Cache Python Dependencies
id: cache-pip
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: pip-${{ runner.os }}-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
pip-${{ runner.os }}-
- name: Retrieve and Initialize IP and DNS Blacklists
run: |
cd caddy-waf
Expand Down

0 comments on commit 55d34b3

Please sign in to comment.