Skip to content

Auto-commit latest package versions #1289

Auto-commit latest package versions

Auto-commit latest package versions #1289

Workflow file for this run

name: Auto-commit latest package versions
on:
schedule:
- cron: "0 2 * * *"
workflow_dispatch:
inputs: {}
jobs:
update-commit:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: pip install semver jinja2
- name: Run autoupdate.py
run: ./autoupdate.py
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Auto-update package versions"