build(deps): bump pygments from 2.4.0 to 2.18.0 #29
This file contains 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: darkgray_bump_version check | |
on: push # yamllint disable-line rule:truthy | |
jobs: | |
test-bump-version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
- uses: actions/setup-python@v5 | |
- name: Make sure that `darkgray_bump_version` still finds all version strings | |
and that there's a future milestone on GitHub Issues. | |
# If this fails, make sure the regular expressions in | |
# release_tools/bump-version-patterns.yaml | |
# match changes in the files to modify. Also ensure there's a milestone | |
# in the GitHub repository with a future version number as its name. | |
# This is used to update the call for reviewing pull requests | |
# in `README.rst`. | |
run: | | |
uvx --from=darkgray-dev-tools darkgray_bump_version \ | |
--minor \ | |
--dry-run \ | |
--token=${{ secrets.GITHUB_TOKEN }} |