2022-02-22 10:20:50 -05:00
|
|
|
name: Update Deps - Python
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
# Sunday at 5:00pm
|
|
|
|
- cron: "0 17 * * 0"
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
update:
|
|
|
|
name: Update Python Dependencies
|
|
|
|
runs-on: ubuntu-latest
|
2022-02-22 10:51:12 -05:00
|
|
|
timeout-minutes: 30
|
2022-02-22 10:20:50 -05:00
|
|
|
steps:
|
2022-03-07 10:34:26 -05:00
|
|
|
- uses: actions/checkout@v3
|
2022-02-22 10:40:43 -05:00
|
|
|
- name: Update Dependencies
|
|
|
|
run: ./.github/scripts/update-python.sh
|
2022-02-22 10:20:50 -05:00
|
|
|
env:
|
|
|
|
id: ${{ github.run_id }}
|
2022-02-22 10:33:03 -05:00
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
2022-02-22 10:24:08 -05:00
|
|
|
working_directory: ${{ github.workspace }}
|