diff --git a/.github/workflows/update-badip.yml b/.github/workflows/update-badip.yml index 7f50c2c..0e0b4e6 100644 --- a/.github/workflows/update-badip.yml +++ b/.github/workflows/update-badip.yml @@ -70,6 +70,19 @@ jobs: runs-on: ubuntu-latest needs: setup-and-download steps: + - name: Checkout repository + uses: actions/checkout@v5 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.14' + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - name: Download artifacts from previous job uses: actions/download-artifact@v4 with: @@ -127,6 +140,19 @@ jobs: runs-on: ubuntu-latest needs: process-data steps: + - name: Checkout repository + uses: actions/checkout@v5 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.14' + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - name: Download processed data uses: actions/download-artifact@v4 with: