Bump typing-extensions from 4.13.2 to 4.14.0 in /dependabot in the all group #168
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
| name: Sync Requirements | |
| on: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| repository: ${{ github.event.pull_request.head.repo.full_name }} | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| token: ${{ secrets.COMMIT_ACTIONS_TOKEN }} | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.11 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install vereqsyn | |
| - name: Syncing grok-versions.cfg with requirements.txt | |
| run: | | |
| vereqsyn grok-versions.cfg dependabot/requirements.txt | |
| - name: Commit changes | |
| uses: EndBug/add-and-commit@v9 | |
| with: | |
| committer_name: GitHub Actions | |
| committer_email: actions@github.com | |
| message: Version synchronization | |
| add: '["grok-versions.cfg", "dependabot/requirements.txt"]' |