Add check for updates action #1
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: Check for updates | |
on: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
check_for_library_updates: | |
name: Check for library updates | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run pip-compile --upgrade | |
run: ./tools/pip-compile.sh --upgrade | |
- name: Run check_for_file_updates.sh | |
run: ./tools/check_for_file_updates.sh requirements.txt |