Bump ruamel-yaml from 0.17.40 to 0.18.6 #20
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: dependencies | |
on: | |
pull_request: | |
paths: | |
- requirements* | |
# Only allow one instance of this workflow for each PR. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
compile: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
cache: 'pip' | |
- run: python -m pip install uv | |
- run: uv pip compile --extra=dev --output-file=requirements.txt setup.cfg | |
- run: git diff --exit-code |