Skip to content

Check for Bedrock Server Updates #110

Check for Bedrock Server Updates

Check for Bedrock Server Updates #110

Workflow file for this run

name: Check for Bedrock Server Updates
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # Run daily
jobs:
check_update:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install requirements
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run script
run: python check_version.py
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Updated server versions and checksums