This repository was archived by the owner on Oct 11, 2025. It is now read-only.
OSO Version Updater #36771
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: OSO Version Updater | |
| # Every 30 minutes check for a new version of the package. | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| schedule: | |
| - cron: '15,45 * * * *' | |
| jobs: | |
| Version-Updater: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| with: | |
| token: ${{ secrets.WORKFLOW_GITHUB_TOKEN }} | |
| - name: "Update Builder" | |
| uses: multi-py/action-python-versionator@main | |
| with: | |
| package: "oso" | |
| git_name: "Robert Hafner" | |
| git_email: "tedivm@tedivm.com" | |
| action_path: ${{ github.workspace }}/.github/workflows/image-build.yml | |
| exclude_versions: "0.20.0" |