Update checks #156
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Update checks | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: 0 5 * * 0 | |
| jobs: | |
| main: | |
| runs-on: ubuntu-latest | |
| name: Update checks | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.13" | |
| - name: prepare pip | |
| run: | |
| python -m pip install --upgrade pip wheel | |
| - name: install Python deps | |
| run: | |
| python -m pip install --upgrade beautifulsoup4 lxml pyyaml requests | |
| - name: check for library updates | |
| run: | |
| ./private/check-for-updates |