Skip to content

chore(deps): Bump pybids #1

chore(deps): Bump pybids

chore(deps): Bump pybids #1

Workflow file for this run

on:

Check failure on line 1 in .github/workflows/pixi-lock.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pixi-lock.yml

Invalid workflow file

(Line: 36, Col: 9): Unexpected value 'with'
pull_request_target:
paths:
- pyproject.toml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check-lockfile:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout pull request
uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set git identity
run: |
git config --global user.name "nipreps[bot]"
git config --global user.email "bot@nipreps.org"
- uses: prefix-dev/setup-pixi@v0.9.2
with:
pixi-version: v0.58.0
run-install: false
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v7
- name: Update lockfile
run: |
uvx datalad run -i pixi.lock -i pyproject.toml -o pixi.lock -- pixi lock
- name: Push updated lockfile, if needed
run: git push origin HEAD:refs/pull/$PULL/head
with:
PULL: ${{ github.event.pull_request.number }}