Skip to content

Check and update supported pip #5

Check and update supported pip

Check and update supported pip #5

Workflow file for this run

name: Check and update supported pip
on:
schedule:
- cron: '0 0 * * *' # Runs daily at midnight
workflow_dispatch: # Allows manual triggering
jobs:
check-pip-update:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
- name: Run the update script
run: |
.github/workflows/update_supported_pip.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GitHub token for authentication