Update dependencies #867
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 dependencies" | |
on: | |
schedule: | |
- cron: "31 5 * * *" | |
workflow_dispatch: | |
jobs: | |
update_dependencies: | |
name: "Update dependencies" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check out the repo" | |
uses: actions/[email protected] | |
- name: "Setup python" | |
uses: actions/[email protected] | |
with: | |
python-version: 3.8 | |
- name: "Install Python dependencies" | |
uses: py-actions/[email protected] | |
with: | |
path: "tools/dependencies/requirements.txt" | |
- name: "Update dependencies" | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
./tools/dependencies/update_dependencies | |
- name: "Create Pull Request" | |
uses: peter-evans/[email protected] | |
with: | |
title: "Update dependencies" | |
body: "ABBA dependency updates" | |
delete-branch: true | |