Update checks #52
This file contains 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@v4 | |
- name: set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- 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 | |
# vim:ts=2 sts=2 sw=2 et |