From 282e306c2fee5733a5a1da3bfa3c893702c25bd5 Mon Sep 17 00:00:00 2001 From: Be Date: Sat, 2 Mar 2024 11:37:04 +0100 Subject: [PATCH] Automate blacklist updater --- .github/workflows/bl.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/bl.yml b/.github/workflows/bl.yml index af959db..ce03a55 100644 --- a/.github/workflows/bl.yml +++ b/.github/workflows/bl.yml @@ -21,9 +21,11 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v2 with: - python-version: 3.11 - - run: ./requirements.sh + fetch-depth: 0 # this is required to fetch all history for all branches and tags + - uses: actions/setup-python@v5 + - run: pip install -r requirements.txt - run: ./blacklists_updater.sh - run: cat blacklist*txt + - run: git diff + - run: git status