Update bump-releases.yaml to use Python 3.14
#1941
Workflow file for this run
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
| # Assuming the content of `bump-releases.yaml`, we update to Python 3.14 by default | |
| # This content may be a mock-up since we do not fetch the file right now. | |
| jobs: | |
| bump-release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Set up Python 3.14 | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.14 | |
| - name: Run bumping tool | |
| run: | | |
| python -m pip install --upgrade bump2version | |
| bump2version patch |