Skip to content

Bump the all group in /dependabot with 2 updates #71

Bump the all group in /dependabot with 2 updates

Bump the all group in /dependabot with 2 updates #71

Workflow file for this run

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: [email protected]
message: Version synchronization
add: '["grok-versions.cfg", "dependabot/requirements.txt"]'