Skip to content

Update Python Version #3

Update Python Version

Update Python Version #3

Workflow file for this run

name: Update Python Version Table
on:
schedule:
- cron: '0 6 * * 1'
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
- name: Run update script
run: python scripts/py_version.py
- name: Commit and push if changed
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git diff --quiet && echo "No changes" && exit 0
git add README.md
git commit -m "chore: update Python version table"
git push