superlint/.github/workflows/deps-python.yml

17 lines
386 B
YAML
Raw Normal View History

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
steps:
- uses: actions/checkout@v2
- run: ./.github/scripts/update-python.sh
env:
id: ${{ github.run_id }}
2022-02-22 10:24:08 -05:00
working_directory: ${{ github.workspace }}